Notes/webpack-mobile.config.js

14 lines
311 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: {
publicPath: '/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'
},
devtool: 'source-map'
};