nuxt.config.js 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  1. import webpack from 'webpack'
  2. export default {
  3. loading: false,
  4. server: {
  5. port: process.env.NODE_ENV === 'development' ? 9012 : 3000,
  6. host: '0.0.0.0',
  7. public: '0.0.0.0',
  8. },
  9. watchers: {
  10. webpack: {
  11. aggregateTimeout: 300,
  12. poll: 1000,
  13. },
  14. },
  15. head: {
  16. title: 'PromoCollection',
  17. htmlAttrs: {
  18. lang: 'en',
  19. },
  20. meta: [
  21. { charset: 'utf-8' },
  22. { name: 'google-site-verification', content: 'fQgAl9rz9JmPUq85LR8zGTHR7KxbCz19V1pBqiQc27Q' },
  23. { name: 'viewport', content: 'width=1400, initial-scale=0.5' },
  24. { hid: 'description', name: 'description', content: 'Promotional Products, Lanyards, Flash Drives, Mousemats.' },
  25. { hid: 'keywords', name: 'keywords', content: 'PromoCollection' },
  26. { name: 'format-detection', content: 'telephone=no' },
  27. ],
  28. link: [{ rel: 'icon', type: 'image/x-icon', href: '/favicon.ico' }],
  29. script: [
  30. { src: '//yun.baoxiaohe.com/openflatform/sdk/v2.2/staticwwnf5q1r.js' },
  31. ],
  32. },
  33. css: [
  34. 'element-ui/lib/theme-chalk/index.css',
  35. '@/assets/iconfont/iconfont.css',
  36. '@/assets/css/reset.scss',
  37. '@/assets/css/common.scss',
  38. '@/assets/css/element.scss',
  39. '@/assets/css/flex-custom.scss',
  40. '@/assets/css/color.scss',
  41. ],
  42. plugins: [
  43. '@/plugins/element-ui',
  44. '@/plugins/axios.js',
  45. '@/plugins/router.js',
  46. '@/plugins/utils.js',
  47. '@/plugins/oss.js',
  48. { src: '@/assets/iconfont/iconfont.js', ssr: false },
  49. { src: '@/assets/googlemap.js', ssr: false },
  50. ...(process.env.NODE_ENV === 'production' || process.env.NODE_ENV === 'development'? [{ src: '@/plugins/clarity.js', mode: 'client' },{ src: '@/plugins/baidu-analytics.js', mode: 'client' },{ src: '@/plugins/google-analytics.js', mode: 'client' }]
  51. : [])
  52. ],
  53. components: true,
  54. buildModules: ['@nuxt/postcss8'],
  55. modules: ['@nuxtjs/axios', '@nuxtjs/proxy', 'cookie-universal-nuxt'],
  56. axios: {
  57. proxy: true,
  58. prefix: '/api',
  59. },
  60. proxy: {
  61. '/api': {
  62. target:
  63. process.env.NODE_ENV === 'development'
  64. ? 'http://13.55.42.195:9003'
  65. : 'http://127.0.0.1:8082',
  66. changeOrigin: true,
  67. pathRewrite: {
  68. '^/api': '',
  69. },
  70. },
  71. },
  72. build: {
  73. extend(config, ctx) {
  74. if (ctx.isClient) {
  75. // Enable Source Maps for client-side code
  76. config.devtool = 'source-map';
  77. }
  78. },
  79. // postcss: {
  80. // plugins: {
  81. // 'postcss-pxtorem': {
  82. // rootValue: 16,
  83. // propList: ['*']
  84. // }
  85. // }
  86. // },
  87. extractCSS: true,
  88. transpile: [/^element-ui/],
  89. plugins: [
  90. new webpack.ProvidePlugin({
  91. _: 'lodash',
  92. }),
  93. ],
  94. },
  95. // https://www.nuxtjs.cn/api/configuration-router#scrollBehavior
  96. router: {
  97. middleware: 'redirect',
  98. scrollBehavior(to, from, savedPosition) {
  99. // if the returned position is falsy or an empty object,
  100. // will retain current scroll position.
  101. let position = false
  102. // 自定义行为
  103. const reg = /\/category/
  104. if ((reg.test(to.path) && reg.test(from.path)) || to.path !== from.path) {
  105. // 在5种分类页间跳转 或者 同组件路由跳转时, 重置滚动距离
  106. position = { x: 0, y: 0 }
  107. } else if (savedPosition) {
  108. position = savedPosition
  109. }
  110. if (to.hash) {
  111. let hash = to.hash
  112. // CSS.escape() is not supported with IE and Edge.
  113. if (
  114. typeof window.CSS !== 'undefined' &&
  115. typeof window.CSS.escape !== 'undefined'
  116. ) {
  117. hash = '#' + window.CSS.escape(hash.substr(1))
  118. }
  119. try {
  120. if (document.querySelector(hash)) {
  121. // scroll to anchor by returning the selector
  122. position = { selector: hash }
  123. } else {
  124. // 部分情况下, 点击带hash的路由链接跳转会没法正确识别到hash, 需要用这种方式处理.
  125. return new Promise(resolve => {
  126. window.$nuxt.$once('triggerScroll', () => {
  127. position = { selector: hash }
  128. resolve(position)
  129. })
  130. })
  131. }
  132. } catch (e) {
  133. console.warn(
  134. 'Failed to save scroll position. Please add CSS.escape() polyfill (https://github.com/mathiasbynens/CSS.escape).'
  135. )
  136. }
  137. return position
  138. } else {
  139. return position
  140. }
  141. },
  142. },
  143. }