mirror of
https://github.com/zadam/trilium.git
synced 2024-11-11 01:23:57 +08:00
14 lines
No EOL
312 B
JavaScript
14 lines
No EOL
312 B
JavaScript
const path = require('path');
|
|
|
|
module.exports = {
|
|
mode: 'production',
|
|
entry: {
|
|
mobile: './src/public/app/setup.js',
|
|
},
|
|
output: {
|
|
publicPath: 'app-dist/',
|
|
path: path.resolve(__dirname, 'src/public/app-dist'),
|
|
filename: 'setup.js'
|
|
},
|
|
devtool: 'source-map'
|
|
}; |