Files
certd/packages/executor/webpack.config.cjs

11 lines
180 B
JavaScript
Raw Normal View History

2021-01-03 21:50:14 +08:00
const path = require('path')
module.exports = {
2021-01-04 00:45:04 +08:00
target: 'node',
2021-01-03 21:50:14 +08:00
entry: './src/index.js',
output: {
2021-01-04 00:45:04 +08:00
filename: 'main.cjs',
2021-01-03 21:50:14 +08:00
path: path.resolve(__dirname, 'dist')
}
}