nuxt.config.js 4.6 KB

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