mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2025-01-06 12:17:13 +08:00
14 lines
244 B
JavaScript
14 lines
244 B
JavaScript
|
module.exports = {
|
||
|
mode: 'development',
|
||
|
externalsPresets: { node: true },
|
||
|
externals: [/^[@/a-z\-0-9]+$/],
|
||
|
target: 'node',
|
||
|
entry: './server.js',
|
||
|
output: {
|
||
|
filename: 'server.js',
|
||
|
library: {
|
||
|
type: 'commonjs2'
|
||
|
}
|
||
|
}
|
||
|
}
|