add vue-loader dependencies and basic config
This commit is contained in:
parent
5e1a802b15
commit
6c547e3142
3 changed files with 750 additions and 17 deletions
|
@ -67,6 +67,10 @@ var config = {
|
|||
exclude: /(node_modules|vendor\/assets)/,
|
||||
loader: 'babel-loader'
|
||||
},
|
||||
{
|
||||
test: /\.vue$/,
|
||||
use: 'vue-loader'
|
||||
},
|
||||
{
|
||||
test: /\.svg$/,
|
||||
use: 'raw-loader'
|
||||
|
|
|
@ -20,6 +20,7 @@
|
|||
"bootstrap-sass": "^3.3.6",
|
||||
"compression-webpack-plugin": "^0.3.2",
|
||||
"core-js": "^2.4.1",
|
||||
"css-loader": "^0.28.0",
|
||||
"d3": "^3.5.11",
|
||||
"document-register-element": "^1.3.0",
|
||||
"dropzone": "^4.2.0",
|
||||
|
@ -43,7 +44,9 @@
|
|||
"underscore": "^1.8.3",
|
||||
"visibilityjs": "^1.2.4",
|
||||
"vue": "^2.2.4",
|
||||
"vue-loader": "^11.3.4",
|
||||
"vue-resource": "^0.9.3",
|
||||
"vue-template-compiler": "^2.2.6",
|
||||
"webpack": "^2.3.3",
|
||||
"webpack-bundle-analyzer": "^2.3.0"
|
||||
},
|
||||
|
|
Loading…
Reference in a new issue