Browse Source

revert false applications of "use"

pull/155/head
Thorsten Lünborg 8 years ago
committed by GitHub
parent
commit
e167890a88
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      template/webpack.config.js

6
template/webpack.config.js

@ -43,7 +43,7 @@ module.exports = {
{{/sass}}
{
test: /\.vue$/,
use: 'vue-loader',
loader: 'vue-loader',
options: {
loaders: {
{{#sass}}
@ -67,12 +67,12 @@ module.exports = {
},
{
test: /\.js$/,
use: 'babel-loader',
loader: 'babel-loader',
exclude: /node_modules/
},
{
test: /\.(png|jpg|gif|svg)$/,
use: 'file-loader',
loader: 'file-loader',
options: {
name: '[name].[ext]?[hash]'
}

Loading…
Cancel
Save