mirror of
https://github.com/zadam/trilium.git
synced 2024-11-10 17:13:45 +08:00
16 lines
419 B
JavaScript
16 lines
419 B
JavaScript
const path = require('path');
|
|
const assetPath = require('./src/services/asset_path');
|
|
|
|
module.exports = {
|
|
mode: 'production',
|
|
entry: {
|
|
mobile: './src/public/app/desktop.js',
|
|
},
|
|
output: {
|
|
publicPath: `${assetPath}/app-dist/`,
|
|
path: path.resolve(__dirname, 'src/public/app-dist'),
|
|
filename: 'desktop.js'
|
|
},
|
|
devtool: 'source-map',
|
|
target: 'electron-renderer'
|
|
};
|