55 lines
1.0 KiB
JavaScript
55 lines
1.0 KiB
JavaScript
|
|
||
|
export default {
|
||
|
/*
|
||
|
** Nuxt rendering mode
|
||
|
** See https://nuxtjs.org/api/configuration-mode
|
||
|
*/
|
||
|
mode: 'universal',
|
||
|
/*
|
||
|
** 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'
|
||
|
],
|
||
|
/*
|
||
|
** Plugins to load before mounting the App
|
||
|
** https://nuxtjs.org/guide/plugins
|
||
|
*/
|
||
|
plugins: [
|
||
|
'@/plugins/element-ui',
|
||
|
'@/plugins/axios'
|
||
|
],
|
||
|
/*
|
||
|
** Nuxt.js dev-modules
|
||
|
*/
|
||
|
buildModules: [
|
||
|
],
|
||
|
/*
|
||
|
** Nuxt.js modules
|
||
|
*/
|
||
|
modules: [
|
||
|
],
|
||
|
/*
|
||
|
** Build configuration
|
||
|
** See https://nuxtjs.org/api/configuration-build/
|
||
|
*/
|
||
|
build: {
|
||
|
transpile: [/^element-ui/],
|
||
|
}
|
||
|
}
|