dashy/vue.config.js
2025-09-02 20:04:33 +08:00

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',
},
};