2
0
mirror of https://github.com/tenrok/vue-meta.git synced 2026-06-22 22:00:35 +03:00

Fix: merge array if vmid is undefined

This commit is contained in:
Sébastien Chopin
2016-11-14 20:40:10 +01:00
parent 5808ab9340
commit 8f39c97128
3 changed files with 5 additions and 5 deletions
+3 -3
View File
@@ -25,9 +25,9 @@ export default {
module: {
loaders: [
{ test: /\.js$/, exclude: /node_modules/, loader: 'babel' },
{ test: /\.vue$/, loader: 'vue' },
{ test: /\.json$/, loader: 'json' }
{ test: /\.js$/, exclude: /node_modules/, loader: 'babel-loader' },
{ test: /\.vue$/, loader: 'vue-loader' },
{ test: /\.json$/, loader: 'json-loader' }
]
},