-
Notifications
You must be signed in to change notification settings - Fork 109
/
webpack.prod.js
39 lines (34 loc) · 979 Bytes
/
webpack.prod.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
const { merge } = require('webpack-merge');
const common = require('./webpack.common.js');
const webpack = require('webpack');
const path = require('path');
const HtmlWebPackPlugin = require("html-webpack-plugin");
const CopyWebpackPlugin = require('copy-webpack-plugin');
const htmlPlugin = new HtmlWebPackPlugin({
template: './src/index.html',
filename: '../index.html',
favicon: 'src/favicon.png'
});
const copyPlugin = new CopyWebpackPlugin({
patterns: [
{ from: "public", to: "../" },
],
});
let plugins = [htmlPlugin, copyPlugin];
plugins.push(
new webpack.DefinePlugin({
'PIXLET_API_BASE': JSON.stringify(''),
})
);
module.exports = merge(common, {
mode: 'production',
devtool: 'source-map',
output: {
asyncChunks: true,
publicPath: '/static/',
path: path.resolve(__dirname, 'dist/static'),
filename: '[name].[chunkhash].js',
clean: true,
},
plugins: plugins,
});