123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- 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' },
- { hid: 'description', name: 'description', content: process.env.npm_package_description || '' }
- ],
- link: [
- { rel: 'icon', type: 'image/x-icon', href: '/favicon.ico' }
- ]
- },
- /*
- ** Global CSS
- */
- css: [
- 'element-ui/lib/theme-chalk/index.css',
- { src: '~assets/scss/main.scss', lang: 'scss' },
- ],
- /*
- ** Plugins to load before mounting the App
- ** https://nuxtjs.org/guide/plugins
- */
- plugins: [
- '@/plugins/element-ui','~/plugins/axios.http'
- ],
- /*
- ** Auto import components
- ** See https://nuxtjs.org/api/configuration-components
- */
- components: true,
- /*
- ** Nuxt.js dev-modules
- */
- buildModules: [
- ],
- /*
- ** Nuxt.js modules
- */
- modules: ['@nuxtjs/axios'],
- /*
- ** Build configuration
- ** See https://nuxtjs.org/api/configuration-build/
- */
- build: {
- transpile: [/^element-ui/],
- },
- axios: {
- baseURL: 'http://192.168.0.179:8100', // Used as fallback if no runtime config is provided
- },
- }
|