Files
certd/packages/executor/webpack.config.js
2021-01-03 21:50:14 +08:00

10 lines
161 B
JavaScript

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