Files
certd/packages/executor/webpack.config.cjs
2021-01-04 00:45:04 +08:00

11 lines
180 B
JavaScript

const path = require('path')
module.exports = {
target: 'node',
entry: './src/index.js',
output: {
filename: 'main.cjs',
path: path.resolve(__dirname, 'dist')
}
}