123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106 |
- const dev = {
- baseURL: 'http://192.168.0.179:82/api',
- host: 'localhost',
- }
- const pro = {
- baseURL: 'http://182.92.186.22:83/api',
- host: 'http://182.92.186.22:83/api',
- }
- const isDev = true;
- export default {
- /*
- ** Nuxt rendering mode
- ** See https://nuxtjs.org/api/configuration-mode
- */
- mode: 'universal',
- /*
- ** Nuxt target
- ** See https://nuxtjs.org/api/configuration-target
- */
- target: 'server',
- /*
- ** Headers of the page
- ** See https://nuxtjs.org/api/configuration-head
- */
- head: {
- title: process.env.npm_package_name || '',
- meta: [
- { charset: 'utf-8' },
- { name: 'viewport', content: 'width=device-width, initial-scale=1' },
- { name: 'nuxtConfigDescription', content: process.env.npm_package_description || '' },
- {name:'applicable-device',content:'pc'},
- { 'http-equiv':"Cache-Control",content:'no-transform' },
- { 'http-equiv':"Cache-Control",content:'no-siteapp' },
- ],
- link: [
- { rel: 'icon', type: 'image/x-icon', href: '/favicon.ico' },
- ],
- },
- /*
- ** Global CSS
- */
- css: [
- 'element-ui/lib/theme-chalk/index.css',
- '@/assets/scss/main.scss'
- ],
- /*
- ** Plugins to load before mounting the App
- ** https://nuxtjs.org/guide/plugins
- */
- plugins: [
- '@/plugins/element-ui', '~/plugins/axios.http', {src:'~plugins/loadsh.js',ssr: false},
- ],
- /*
- ** Auto import components
- ** See https://nuxtjs.org/api/configuration-components
- */
- components: true,
- /*
- ** Nuxt.js dev-modules
- */
- buildModules: [],
- /**
- * 环境变量设置 新闻 拼路径时的根级别路径 多用于a标签 href属性
- */
- env: {
- baseUrl: 'http://localhost:3000'
- },
- /**
- * loading 进度条样式
- */
- loading: false,
- /*
- ** Nuxt.js modules
- */
- modules: ['@nuxtjs/axios'],
- /*
- ** Build configuration
- ** See https://nuxtjs.org/api/configuration-build/
- */
- build: {
- transpile: [/^element-ui/],
- // 异步加载样式 默认false
- extractCSS: true
- },
- // server: {
- // port: 3000, // default: 3000
- // host: '192.168.0.79' // default: localhost,
- // },
- // server: {
- // port: 3000, // default: 3000
- // host: '192.168.0.179' // default: localhost,
- // },
- // server: {
- // port: 3000, // default: 3000
- // host: isDev ? dev.host : pro.host // default: localhost,
- // },
- axios: {
- // baseURL: isDev ? dev.baseURL : pro.baseURL
- // baseURL: 'http://182.92.186.22:83/api',
- baseURL: 'http://192.168.0.179:8100',
- // baseURL: 'http://182.92.186.22:83/api', // Used as fallback if no runtime config is provided
- },
- };
|