vue.config.js 268 B

12345678910111213
  1. module.exports = {
  2. pages: {
  3. index: {
  4. entry: 'src/main.js',
  5. template: 'public/template.html',
  6. filename: 'index.html',
  7. title: '云系统'
  8. }
  9. },
  10. devServer: {
  11. disableHostCheck: true
  12. }
  13. }