Browse Source

load standalone build of Vue by default

Doing this with an alias in webpack config as per https://vuejs.org/guide/installation.html#Standalone-vs-Runtime-only-Build
pull/32/head
Thorsten Lünborg 9 years ago
committed by GitHub
parent
commit
de7d7d75bd
  1. 5
      template/webpack.config.js

5
template/webpack.config.js

@ -31,6 +31,11 @@ module.exports = {
}
]
},
resolve: {
alias: {
'vue$': 'vue/dist/vue'
}
},
devServer: {
historyApiFallback: true,
noInfo: true

Loading…
Cancel
Save