const path = require('path');

module.exports = {
    mode: 'production',
    entry: {
        mobile: './src/public/app/desktop.js',
    },
    output: {
        publicPath: 'app-dist/',
        path: path.resolve(__dirname, 'src/public/app-dist'),
        filename: 'desktop.js'
    },
    devtool: 'source-map'
};