mirror of
https://github.com/certd/certd.git
synced 2026-04-15 05:00:52 +08:00
10 lines
161 B
JavaScript
10 lines
161 B
JavaScript
const path = require('path')
|
|
|
|
module.exports = {
|
|
entry: './src/index.js',
|
|
output: {
|
|
filename: 'main.js',
|
|
path: path.resolve(__dirname, 'dist')
|
|
}
|
|
}
|