10 lines
198 B
JavaScript
10 lines
198 B
JavaScript
|
const path = require('path')
|
||
|
|
||
|
module.exports = {
|
||
|
entry: './src/main.js',
|
||
|
mode: 'production',
|
||
|
output: {
|
||
|
filename: 'auto-entities.js',
|
||
|
path: path.resolve(__dirname)
|
||
|
}
|
||
|
}
|