You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. const path = require('path')
  2. const resolve = dir => {
  3. return path.join(__dirname, dir)
  4. }
  5. // 项目部署基础
  6. // 默认情况下,我们假设你的应用将被部署在域的根目录下,
  7. // 例如:https://www.my-app.com/
  8. // 默认:'/'
  9. // 如果您的应用程序部署在子路径中,则需要在这指定子路径
  10. // 例如:https://www.foobar.com/my-app/
  11. // 需要将它改为'/my-app/'
  12. // iview-admin线上演示打包路径: https://file.iviewui.com/admin-dist/
  13. const BASE_URL = process.env.NODE_ENV === 'production'
  14. ? '/'
  15. : '/'
  16. module.exports = {
  17. // Project deployment base
  18. // By default we assume your app will be deployed at the root of a domain,
  19. // e.g. https://www.my-app.com/
  20. // If your app is deployed at a sub-path, you will need to specify that
  21. // sub-path here. For example, if your app is deployed at
  22. // https://www.foobar.com/my-app/
  23. // then change this to '/my-app/'
  24. baseUrl: BASE_URL,
  25. // tweak internal webpack configuration.
  26. // see https://github.com/vuejs/vue-cli/blob/dev/docs/webpack.md
  27. // 如果你不需要使用eslint,把lintOnSave设为false即可
  28. lintOnSave: true,
  29. chainWebpack: config => {
  30. config.resolve.alias
  31. .set('@', resolve('src')) // key,value自行定义,比如.set('@@', resolve('src/components'))
  32. .set('_c', resolve('src/components'))
  33. },
  34. // 设为false打包时不生成.map文件
  35. productionSourceMap: false
  36. // 这里写你调用接口的基础路径,来解决跨域,如果设置了代理,那你本地开发环境的axios的baseUrl要写为 '' ,即空字符串
  37. // devServer: {
  38. // proxy: 'localhost:3000'
  39. // }
  40. }