1
2
3
4
5
6
7
8
9
10
11
12
13
14
| const path = require('path');
|
| module.exports = {
| publicPath: './',
| configureWebpack: {
| output: {
| filename: 'static/js/[contenthash:8].js',
| chunkFilename: 'static/js/[contenthash:8].js',
| path: path.resolve(__dirname, 'unpackage/dist/build/web'),
| publicPath: './',
| },
| },
| productionSourceMap: false,
| };
|
|