Skip to content

Commit 9e23804

Browse files
committed
Fixed Vue.js 2.1 render trouble bootstrap-vue#45
1 parent 868deb5 commit 9e23804

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

scripts/webpack.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,17 +43,17 @@ config.module = {
4343
// Vue
4444
{
4545
test: /\.vue$/,
46-
loader: 'vue',
46+
loader: 'vue-loader',
4747
},
4848
// Vue HTML
4949
{
5050
test: /\.html$/,
51-
loader: 'vue-html'
51+
loader: 'vue-html-loader'
5252
},
5353
// JS
5454
{
5555
test: /\.js$/,
56-
loader: 'babel',
56+
loader: 'babel-loader',
5757
// important: exclude files in node_modules, otherwise it's going to be really slow!
5858
exclude: /node_modules|vendor/
5959
},

0 commit comments

Comments
 (0)