module.exports = { ssr: false, /* ** Headers of the page */ head: { title: 'SEEC软件工程教育云平台', // process.env.npm_package_name || '', meta: [ { charset: 'utf-8' }, { name: 'viewport', content: 'width=device-width, initial-scale=1' }, { hid: 'description', name: 'description', content: process.env.npm_package_description || 'SEEC软件工程教育云平台,一个旨在为在校学生或行业内人士,提供系统性自主学习软件工程领域知识服务的平台' } ], link: [ { rel: 'icon', type: 'image/x-icon', href: '/seec.ico' } ] }, /* ** Customize the progress-bar color */ loading: { color: '#fff' }, /* ** Global CSS */ css: [ 'element-ui/lib/theme-chalk/index.css', { src: '~/assets/css/main.scss', lang: 'scss' } ], /* ** Plugins to load before mounting the App */ plugins: [ { src: '@/plugins/element-ui', ssr: true }, { src: '~/plugins/vuex-persist', ssr: false }, '~/plugins/api', '~/plugins/apis', '~/plugins/apiss', '~plugins/echarts', '~/plugins/vue-tour' ], /* ** Nuxt.js dev-modules */ buildModules: [ ], /* ** Nuxt.js modules */ modules: [ '@nuxtjs/axios', '@nuxtjs/style-resources', 'cookie-universal-nuxt', '@nuxtjs/proxy' ], router: { middleware: 'auth' }, styleResources: { scss: './assets/css/main.scss' }, /* ** Build configuration */ build: { transpile: [/^element-ui/], /* ** You can extend webpack config here */ extend (config, ctx) { } }, axios: { proxy: false, prefix: '/api', // baseURL credentials: true }, proxy: { '/api/': { target: 'http://localhost:8080' // 代理地址 // target: 'https://p-server.seec.seecoder.cn' // 代理地址 // changeOrigin: true, // pathRewrite: { // '^/api': '' // }, }, '/apis/': { // target: 'http://localhost:5000', target: 'http://47.111.95.164:8080', pathRewrite: { '^/apis': '/api' } }, '/apiss/': { // target: 'http://localhost:5000', target: 'http://47.111.95.164:8080', pathRewrite: { '^/apiss': '/api' } } } // server: { // https: true // } }