Lint files

This commit is contained in:
Boris Kubiak 2018-01-27 13:38:00 +01:00
parent c557ec5611
commit aec85c7c68

View file

@ -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') {