vue.config.js 349 B

12345678910111213141516171819
  1. module.exports = {
  2. publicPath: './',
  3. productionSourceMap: false,
  4. pages: {
  5. index: {
  6. // page 的入口
  7. entry: 'src/main.js',
  8. // 模板来源
  9. template: 'public/index.html',
  10. // 在 dist/index.html 的输出
  11. filename: 'index.html',
  12. title: '游来有旺'
  13. }
  14. },
  15. devServer: {
  16. open: true
  17. }
  18. }