vue.config.js 508 B

1234567891011121314151617181920
  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 选项时,template 中的 title 标签需要是 <title><%= htmlWebpackPlugin.options.title %></title>
  13. // title: '椰子商城'
  14. title: '椰子商城'
  15. }
  16. },
  17. devServer: {
  18. open: true
  19. }
  20. }