mirror of
https://github.com/Lissy93/dashy.git
synced 2025-12-06 16:43:13 +01:00
13 lines
210 B
JavaScript
13 lines
210 B
JavaScript
module.exports = {
|
|
pages: {
|
|
index: {
|
|
entry: 'src/main.js',
|
|
template: 'public/index.html',
|
|
filename: 'index.html',
|
|
},
|
|
},
|
|
devServer: {
|
|
port: 8080,
|
|
host: '0.0.0.0',
|
|
},
|
|
};
|