2020-04-12 20:22:51 +08:00
|
|
|
const path = require('path');
|
2022-10-27 05:50:54 +08:00
|
|
|
const assetPath = require('./src/services/asset_path');
|
2020-04-12 20:22:51 +08:00
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
mode: 'production',
|
|
|
|
entry: {
|
2020-04-15 03:57:42 +08:00
|
|
|
mobile: './src/public/app/desktop.js',
|
2020-04-12 20:22:51 +08:00
|
|
|
},
|
|
|
|
output: {
|
2022-10-27 05:50:54 +08:00
|
|
|
publicPath: `/${assetPath}/app-dist/`,
|
2020-04-15 03:57:42 +08:00
|
|
|
path: path.resolve(__dirname, 'src/public/app-dist'),
|
2020-04-12 20:22:51 +08:00
|
|
|
filename: 'desktop.js'
|
|
|
|
},
|
2021-12-24 06:01:25 +08:00
|
|
|
devtool: 'source-map',
|
2021-12-25 05:18:05 +08:00
|
|
|
target: 'electron-renderer'
|
2021-12-24 06:01:25 +08:00
|
|
|
};
|