Платформа ЦРНП "Мирокод" для разработки проектов
https://git.mirocod.ru
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
84 lines
1.8 KiB
84 lines
1.8 KiB
const path = require('path'); |
|
const TerserPlugin = require('terser-webpack-plugin'); |
|
const { SourceMapDevToolPlugin } = require('webpack'); |
|
const VueLoaderPlugin = require('vue-loader/lib/plugin'); |
|
|
|
module.exports = { |
|
mode: 'production', |
|
entry: { |
|
index: ['./web_src/js/index'], |
|
swagger: ['./web_src/js/swagger'], |
|
}, |
|
devtool: false, |
|
output: { |
|
path: path.resolve(__dirname, 'public/js'), |
|
filename: '[name].js', |
|
chunkFilename: '[name].js', |
|
}, |
|
optimization: { |
|
minimize: true, |
|
minimizer: [new TerserPlugin({ |
|
sourceMap: true, |
|
extractComments: false, |
|
terserOptions: { |
|
output: { |
|
comments: false, |
|
}, |
|
}, |
|
})], |
|
}, |
|
module: { |
|
rules: [ |
|
{ |
|
test: /\.vue$/, |
|
exclude: /node_modules/, |
|
loader: 'vue-loader' |
|
}, |
|
{ |
|
test: /\.js$/, |
|
exclude: /node_modules/, |
|
use: { |
|
loader: 'babel-loader', |
|
options: { |
|
presets: [ |
|
[ |
|
'@babel/preset-env', |
|
{ |
|
useBuiltIns: 'usage', |
|
corejs: 3, |
|
} |
|
] |
|
], |
|
plugins: [ |
|
[ |
|
'@babel/plugin-transform-runtime', |
|
{ |
|
regenerator: true, |
|
} |
|
], |
|
'@babel/plugin-proposal-object-rest-spread', |
|
], |
|
} |
|
} |
|
}, |
|
{ |
|
test: /\.css$/i, |
|
use: ['style-loader', 'css-loader'], |
|
}, |
|
] |
|
}, |
|
plugins: [ |
|
new VueLoaderPlugin(), |
|
new SourceMapDevToolPlugin({ |
|
filename: '[name].js.map', |
|
exclude: [ |
|
'swagger.js', |
|
], |
|
}), |
|
], |
|
performance: { |
|
assetFilter: (filename) => { |
|
return !filename.endsWith('.map') && filename !== 'swagger.js'; |
|
} |
|
}, |
|
};
|
|
|