| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- 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 || '' }
- ],
- link: [
- { rel: 'icon', type: 'image/x-icon', href: '/favicon.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: [
- '@/plugins/element-ui',
- '~/plugins/api'
- ],
- /*
- ** 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: {
- port: 8000
- }
- }
|