mirror of
https://github.com/filegator/filegator.git
synced 2025-01-17 12:48:22 +01:00
12 lines
186 B
JavaScript
12 lines
186 B
JavaScript
|
module.exports = {
|
||
|
indexPath: 'main.html',
|
||
|
filenameHashing: false,
|
||
|
configureWebpack: config => {
|
||
|
config.entry = {
|
||
|
app: [
|
||
|
'./frontend/main.js'
|
||
|
]
|
||
|
}
|
||
|
}
|
||
|
}
|