1
wwl
2025-07-31 c3c6cf8cb3f73755ac9fad29f2b2c0cf64f27979
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,
};