12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- export default {
- // Global page headers: https://go.nuxtjs.dev/config-head
- head: {
- title: '惠融数科',
- htmlAttrs: {
- lang: 'en'
- },
- meta: [
- { charset: 'utf-8' },
- { name: 'viewport', content: 'width=device-width, initial-scale=1' },
- {hid:'keywords',name:'keywords',content:'助贷获客,信贷拓客,金融中介CRM系统'}, // 关键字
- { hid: 'description', name: 'description', content: '惠融易客助贷系统是一套专门为助贷机构量身打造的金融中介精准获客服务平台。一站式帮助助贷机构,金融居间公司,银行贷款中介老板解决获客难,转化差,管理难等业务难题,提高销售人员效率,提升销售团队业绩!现在申请,可立即试用!' }, // 描述
- {name:'robots',content:'index' },
- {name:'applicable-device', content:"pc,mobile"},
- {name: 'format-detection', content: 'telephone=no' },
- // {name:"google-site-verification",content:""}, // 谷歌
- // {name:"baidu-site-verification",content:""}, // 百度
- // {name:"360-site-verification", content:""}, //360
- // {name:"sogou_site_verification", content:""} // 搜狗
- ],
- link: [
- { rel: 'icon', type: 'image/x-icon', href: '/favicon.ico' }
- ],
- script:[
- {src:'js/isMobile.js'}
- ]
- },
- // Global CSS: https://go.nuxtjs.dev/config-css
- css: [
- 'ant-design-vue/dist/antd.css'
- ],
- target:'static',
- // Plugins to run before rendering page: https://go.nuxtjs.dev/config-plugins
- plugins: [
- '@/plugins/antd-ui',
- '@/plugins/vant-ui'
- ],
- // Auto import components: https://go.nuxtjs.dev/config-components
- components: true,
- // Modules for dev and build (recommended): https://go.nuxtjs.dev/config-modules
- buildModules: [
- '@nuxt/postcss8'
- ],
- // Modules: https://go.nuxtjs.dev/config-modules
- modules: [
- "@nuxtjs/proxy",
- "@nuxtjs/axios"
- ],
- // proxy:{
- // '/api':{
- // target:'https://official.webapi.bicredit.xin/api',
- // secure:false,
- // changeOrigin:true
- // }
- // },
- router: {
- // middleware:'auth',
- // base: '/', //此为根目录,如果有具体目录需求按实际情况写
- },
- // Build Configuration: https://go.nuxtjs.dev/config-build
- build: {
- }
- }
|