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

10 lines
161 B
JavaScript
Raw Normal View History

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