mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2024-12-21 04:50:14 +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'
|
|
}
|
|
}
|
|
}
|