Created
July 19, 2020 17:02
-
-
Save bachhm-dev/437536ad0e885a5e2d28ae75c4a78f94 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import colors from 'vuetify/es5/util/colors' | |
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: { | |
titleTemplate: '%s - ' + process.env.npm_package_name, | |
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: [], | |
/* | |
** Plugins to load before mounting the App | |
** https://nuxtjs.org/guide/plugins | |
*/ | |
plugins: ['~/plugins/firebase.js', '~/plugins/filter.js'], | |
/* | |
** Auto import components | |
** See https://nuxtjs.org/api/configuration-components | |
*/ | |
components: true, | |
/* | |
** Nuxt.js dev-modules | |
*/ | |
buildModules: [ | |
// Doc: https://github.com/nuxt-community/eslint-module | |
'@nuxtjs/eslint-module', | |
'@nuxtjs/vuetify', | |
], | |
/* | |
** Nuxt.js modules | |
*/ | |
modules: [ | |
// Doc: https://axios.nuxtjs.org/usage | |
'@nuxtjs/axios', | |
], | |
/* | |
** Axios module configuration | |
** See https://axios.nuxtjs.org/options | |
*/ | |
axios: {}, | |
/* | |
** vuetify module configuration | |
** https://github.com/nuxt-community/vuetify-module | |
*/ | |
vuetify: { | |
customVariables: ['~/assets/variables.scss'], | |
theme: { | |
dark: false, | |
themes: { | |
dark: { | |
primary: colors.blue.darken2, | |
accent: colors.grey.darken3, | |
secondary: colors.amber.darken3, | |
info: colors.teal.lighten1, | |
warning: colors.amber.base, | |
error: colors.deepOrange.accent4, | |
success: colors.green.accent3, | |
}, | |
}, | |
}, | |
}, | |
/* | |
** Build configuration | |
** See https://nuxtjs.org/api/configuration-build/ | |
*/ | |
build: {}, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment