nuxt.config.ts 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. // https://nuxt.com/docs/api/configuration/nuxt-config
  2. const axios = require('axios')
  3. export default defineNuxtConfig({
  4. experimental:{
  5. writeEarlyHints:false
  6. },
  7. app: {
  8. head: {
  9. title: "惠融易客",
  10. meta: [
  11. { name: "description", content: "惠融易客助贷系统是一套专门为助贷机构量身打造的金融中介精准获客服务平台。一站式帮助助贷机构,金融居间公司,银行贷款中介老板解决获客难,转化差,管理难等业务难题,提高销售人员效率,提升销售团队业绩!现在申请,可立即试用!" },
  12. { name: "keywords", content: "助贷获客,信贷拓客,金融中介CRM系统" },
  13. {name:'applicable-device', content:"pc,mobile"}, // 移动pc适配
  14. // { name: "viewport",content:"width=device-width;initial-scale=1.0, maximum-scale=1.0, user-scalable=0"}, // 禁止缩放和左右滑动
  15. ],
  16. script: [
  17. { src: "isMobile.js" },
  18. { src: "aff.js" },
  19. // { src: "vue3-number-roll.js" },
  20. ]
  21. },
  22. },
  23. plugins: [
  24. // { src: "~/plugins/vant-ui"}
  25. ],
  26. css: ["assets/global.scss"],
  27. vite: {
  28. css: {
  29. preprocessorOptions: {
  30. scss: {
  31. additionalData: '@import "~/assets/_variables.scss";',
  32. },
  33. },
  34. },
  35. },
  36. modules: [
  37. '@nuxtjs/tailwindcss',
  38. "@huntersofbook/naive-ui-nuxt",
  39. '@vant/nuxt',
  40. // 'vue3-number-roll'
  41. ],
  42. vant: {
  43. },
  44. build: {
  45. transpile: [/^vant-ui/]
  46. },
  47. // generate: {
  48. // // @ts-ignore
  49. // routes() {
  50. // // @ts-ignore
  51. // return axios.get('https://official.webapi.bicredit.xin/api/news/detail/').then(res => {
  52. // // @ts-ignore
  53. // return res.data.map(user => {
  54. // return {
  55. // route: '/list/' + user.id,
  56. // payload: user
  57. // }
  58. // })
  59. // })
  60. // }
  61. // }
  62. // generate:{
  63. // routes:[
  64. // ['/list/1', '/list/2']
  65. // ]
  66. // }
  67. // imports: {
  68. // dirs: [
  69. // // 扫描顶层目录中模块
  70. // 'composables',
  71. // // 扫描内嵌一层深度的模块,指定特定文件名和后缀名
  72. // 'composables/*/index.{ts,js,mjs,mts}',
  73. // // 扫描给定目录中所有模块
  74. // 'composables/**'
  75. // ]
  76. // },
  77. });