From 48e800771782aa54d4090d045d2e12ec49baec00 Mon Sep 17 00:00:00 2001 From: Rakantor Date: Sat, 29 Apr 2023 14:27:21 +0200 Subject: [PATCH] Cleanup code --- nuxt.config.ts | 7 --- pages/bio.vue | 27 +++++---- pages/portfolio.vue | 142 ++++++++++++-------------------------------- 3 files changed, 54 insertions(+), 122 deletions(-) diff --git a/nuxt.config.ts b/nuxt.config.ts index 4e2fe46..95cfbc5 100644 --- a/nuxt.config.ts +++ b/nuxt.config.ts @@ -3,22 +3,18 @@ import vuetify from 'vite-plugin-vuetify' // https://v3.nuxtjs.org/api/configuration/nuxt.config export default defineNuxtConfig({ ssr: false, - css: [ 'vuetify/styles', '~/assets/variables.scss' ], - vite: { ssr: { noExternal: ['vuetify'] // add the vuetify vite plugin } }, - build: { transpile: ['vuetify'] }, - app: { head: { // titleTemplate: '%s | Home', @@ -40,10 +36,8 @@ export default defineNuxtConfig({ ], } }, - // Plugins to run before rendering page: https://go.nuxtjs.dev/config-plugins plugins: [], - // Modules: https://go.nuxtjs.dev/config-modules modules: [ // https://go.nuxtjs.dev/axios @@ -56,7 +50,6 @@ export default defineNuxtConfig({ ) } ], - i18n: { // { vueI18n: './i18n.config.ts' } // TODO: Revert to config file once the bug in 8.0.0-beta.11 has been fixed diff --git a/pages/bio.vue b/pages/bio.vue index c35a372..0371fc0 100644 --- a/pages/bio.vue +++ b/pages/bio.vue @@ -1,14 +1,13 @@