mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-13 04:48:53 +00:00
13 lines
281 B
JavaScript
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'),
|
|
},
|
|
};
|