Lint files
This commit is contained in:
parent
c557ec5611
commit
aec85c7c68
1 changed files with 70 additions and 70 deletions
|
@ -1,6 +1,6 @@
|
|||
const path = require('path');
|
||||
const webpack = require('webpack');
|
||||
const ExtractTextPlugin = require("extract-text-webpack-plugin");
|
||||
const ExtractTextPlugin = require('extract-text-webpack-plugin');
|
||||
|
||||
module.exports = {
|
||||
entry: {
|
||||
|
@ -17,7 +17,7 @@ module.exports = {
|
|||
test: /\.vue$/,
|
||||
loader: 'vue-loader',
|
||||
options: {
|
||||
extractCSS: true,
|
||||
extractCSS: true
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -37,12 +37,12 @@ module.exports = {
|
|||
{
|
||||
test: /\.(png|woff2)/,
|
||||
exclude: /node_modules/,
|
||||
loader: 'url-loader',
|
||||
loader: 'url-loader'
|
||||
}
|
||||
]
|
||||
},
|
||||
plugins: [
|
||||
new ExtractTextPlugin("style.css")
|
||||
new ExtractTextPlugin('style.css')
|
||||
],
|
||||
resolve: {
|
||||
alias: {
|
||||
|
@ -57,7 +57,7 @@ module.exports = {
|
|||
},
|
||||
performance: {
|
||||
hints: false
|
||||
},
|
||||
}
|
||||
};
|
||||
|
||||
if (process.env.NODE_ENV === 'production') {
|
||||
|
|
Loading…
Add table
Reference in a new issue