Notes/webpack-mobile.config.js

16 lines
344 B
JavaScript
Raw Normal View History

2020-04-12 14:22:51 +02:00
const path = require('path');
module.exports = {
mode: 'production',
entry: {
2020-04-14 21:57:42 +02:00
mobile: './src/public/app/mobile.js',
2020-04-12 14:22:51 +02:00
},
output: {
2020-04-15 21:49:36 +02:00
publicPath: 'app-dist/',
2020-04-14 21:57:42 +02:00
path: path.resolve(__dirname, 'src/public/app-dist'),
2020-04-12 14:22:51 +02:00
filename: 'mobile.js'
},
2021-12-23 23:01:25 +01:00
devtool: 'source-map',
target: 'electron-main'
};