| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- module.exports = {
- mode: 'universal',
- /*
- ** 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},
- '~/plugins/api',
- '~plugins/echarts'
- ],
- /*
- ** Nuxt.js dev-modules
- */
- buildModules: [
- ],
- /*
- ** Nuxt.js modules
- */
- modules: [
- '@nuxtjs/axios',
- '@nuxtjs/style-resources',
- 'cookie-universal-nuxt'
- ],
- 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', // 代理地址
- // // changeOrigin: true,
- // // pathRewrite: {
- // // '^/api': ''
- // // },
- // },
- // },
- server: {
- // https: true
- host: '0.0.0.0',
- port: 3111
- }
- }
|