aboutsummaryrefslogtreecommitdiff
path: root/nuxt.config.js
diff options
context:
space:
mode:
authorAndrew Lee <alee14498@protonmail.com>2021-04-09 15:17:24 -0400
committerAndrew Lee <alee14498@protonmail.com>2021-04-09 15:17:24 -0400
commit577c4323fef0cd2360c8bc44bd9c9e5c0ffadcb9 (patch)
tree7badb49dfbb67f63a4b97abc38c9bc6960fd3cd1 /nuxt.config.js
parent3fb9421ba90977e7f7ac4f1c2e1aadc6b57bcff3 (diff)
downloadpersonal-website-577c4323fef0cd2360c8bc44bd9c9e5c0ffadcb9.tar.gz
personal-website-577c4323fef0cd2360c8bc44bd9c9e5c0ffadcb9.tar.bz2
personal-website-577c4323fef0cd2360c8bc44bd9c9e5c0ffadcb9.zip
Inital rewrite v3
Diffstat (limited to 'nuxt.config.js')
-rw-r--r--nuxt.config.js99
1 files changed, 0 insertions, 99 deletions
diff --git a/nuxt.config.js b/nuxt.config.js
deleted file mode 100644
index 1e8c92f..0000000
--- a/nuxt.config.js
+++ /dev/null
@@ -1,99 +0,0 @@
-import colors from 'vuetify/es5/util/colors'
-import i18n from './config/i18n'
-
-module.exports = {
- head: {
- titleTemplate: '%s - Andrew Lee',
- meta: [
- { charset: 'utf-8' },
- { name: 'viewport', content: 'width=device-width, initial-scale=1' },
- { hid: 'title', name: 'title', content: 'Andrew Lee' },
- { hid: 'description', name: 'description', content: 'Andrew\'s Personal Website' }
- ],
- link: [
- {
- rel: 'icon',
- type: 'image/x-icon',
- href: '/favicon.ico'
- }
- ]
- },
- /*
- ** Customize the progress-bar color
- */
- loading: { color: '#fff' },
- /*
- ** Global CSS
- */
- css: ['./assets/css/animate.css'],
- /*
- ** Plugins to load before mounting the App
- */
- plugins: [],
- /*
- ** Nuxt.js dev-modules
- */
- buildModules: [
- // Doc: https://github.com/nuxt-community/eslint-module
- '@nuxtjs/eslint-module',
- '@nuxtjs/vuetify'
-
- ],
- /*
- ** Nuxt.js modules
- */
- modules: [
- [
- 'nuxt-i18n',
- {
- defaultLocale: 'en',
- locales: [
- {
- code: 'en',
- iso: 'en-US',
- name: 'English'
- },
- {
- code: 'fr',
- iso: 'fr-FR',
- name: 'Français'
- }
- ],
- vueI18n: i18n
- }
- ]
- ],
-
-
- /*
- ** vuetify module configuration
- ** https://github.com/nuxt-community/vuetify-module
- */
- vuetify: {
- customVariables: ['~/assets/variables.scss'],
- theme: {
- dark: true,
- themes: {
- dark: {
- primary: colors.blue.darken2,
- accent: colors.grey.darken3,
- secondary: colors.amber.darken3,
- info: colors.teal.darken1,
- warning: colors.amber.base,
- error: colors.deepOrange.accent4,
- success: colors.green.accent3
- }
- }
- }
- },
-
- /*
- ** Build configuration
- */
- build: {
- /*
- ** You can extend webpack config here
- */
- extend (config, ctx) {}
- }
-}