mirror of
https://github.com/AdguardTeam/AdGuardHome.git
synced 2024-11-17 02:48:28 -07:00
26 lines
641 B
JavaScript
26 lines
641 B
JavaScript
|
const StyleLintPlugin = require('stylelint-webpack-plugin');
|
||
|
const UglifyJsPlugin = require('uglifyjs-webpack-plugin');
|
||
|
const merge = require('webpack-merge');
|
||
|
const common = require('./webpack.common.js');
|
||
|
|
||
|
|
||
|
module.exports = merge(common, {
|
||
|
module: {
|
||
|
rules: [{
|
||
|
test: /\.js$/,
|
||
|
exclude: /node_modules/,
|
||
|
loader: 'eslint-loader',
|
||
|
options: {
|
||
|
failOnError: true,
|
||
|
configFile: 'prod.eslintrc',
|
||
|
},
|
||
|
}],
|
||
|
},
|
||
|
plugins: [
|
||
|
new StyleLintPlugin({
|
||
|
files: '**/*.css',
|
||
|
}),
|
||
|
new UglifyJsPlugin(),
|
||
|
],
|
||
|
});
|