nuxt.config.js 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. /*
  2. * @Description:
  3. * @Author: 欧阳承珺
  4. * @LastEditors: 欧阳承珺
  5. * @Date: 2022-10-17 11:06:52
  6. * @LastEditTime: 2022-11-16 16:42:17
  7. */
  8. export default {
  9. // Global page headers: https://go.nuxtjs.dev/config-head
  10. head: {
  11. title: '',
  12. htmlAttrs: {
  13. lang: 'en',
  14. },
  15. meta: [
  16. { charset: 'utf-8' },
  17. { name: 'viewport', content: 'width=device-width, initial-scale=1' },
  18. { hid: 'description', name: 'description', content: '' },
  19. { name: 'format-detection', content: 'telephone=no' },
  20. ],
  21. link: [{ rel: 'icon', type: 'image/x-icon', href: '/favicon.ico' }],
  22. },
  23. env: {
  24. BASE_URL: process.env.BASE_URL,
  25. NODE_ENV: process.env.NODE_ENV,
  26. MODE_ENV: process.env.MODE_ENV
  27. },
  28. // Global CSS: https://go.nuxtjs.dev/config-css
  29. css: [
  30. '@/assets/main.scss',
  31. {src:'element-ui/lib/theme-chalk/index.css'},
  32. ],
  33. // Plugins to run before rendering page: https://go.nuxtjs.dev/config-plugins
  34. plugins: [
  35. '~/plugins/axios',
  36. {
  37. src: '~plugins/ga.js',
  38. ssr: false
  39. },
  40. {src: '~plugins/element-ui', ssr: false},
  41. // {src: '@/plugins/localStorage', ssr: false},
  42. {src: '@/plugins/vueqr', ssr: false},
  43. ],
  44. // Auto import components: https://go.nuxtjs.dev/config-components
  45. components: true,
  46. // Modules for dev and build (recommended): https://go.nuxtjs.dev/config-modules
  47. buildModules: [
  48. // https://go.nuxtjs.dev/typescript
  49. '@nuxt/typescript-build',
  50. // https://windicss.org/guide/
  51. 'nuxt-windicss',
  52. '@nuxtjs/composition-api/module'
  53. ],
  54. // Modules: https://go.nuxtjs.dev/config-modules
  55. modules: [
  56. '@nuxtjs/axios',
  57. '@nuxtjs/proxy',
  58. ],
  59. axios: {
  60. timeout: 3000,
  61. baseURL: process.env.BASE_URL,
  62. // prefix: '/17pdf-backend-core',
  63. },
  64. // proxy: {
  65. // '/17pdf-backend-core': { target: 'http://81.68.234.235:8999',}
  66. // },
  67. // Build Configuration: https://go.nuxtjs.dev/config-build
  68. build: {
  69. vendor: ['element-ui']
  70. },
  71. loading: false,
  72. //用户输入不存在的路径,跳到首页
  73. router: {
  74. extendRoutes(routes, resolve) {
  75. routes.push({
  76. path: '*',
  77. redirect: '/'
  78. })
  79. }
  80. }
  81. }