Files
AFFiNE-Mirror/packages/frontend/apps/electron/webpack.config.js
2024-12-24 15:29:48 +08:00

13 lines
281 B
JavaScript

// TODO(@forehalo): all packages would become 'module'
const path = require('node:path');
module.exports.config = {
entry: {
app: './renderer/index.tsx',
shell: './renderer/shell/index.tsx',
},
output: {
path: path.resolve(__dirname, './renderer/dist'),
},
};