From 7784ca4e4325e96160a77ac987ffe27a3c9d881f Mon Sep 17 00:00:00 2001 From: Rakantor Date: Sun, 6 Nov 2022 22:55:59 +0100 Subject: [PATCH] Migrate to Nuxt 3 and Vuetify 3 --- jsconfig.json | 15 - layouts/default.vue | 72 +- nuxt.config.js | 100 - nuxt.config.ts | 55 + package-lock.json | 33252 ++++++++++++------------------------------ package.json | 34 +- pages/bio.vue | 35 +- pages/index.vue | 5 +- pages/portfolio.vue | 15 +- plugins/vuetify.ts | 57 + tsconfig.json | 4 + 11 files changed, 9586 insertions(+), 24058 deletions(-) delete mode 100644 jsconfig.json delete mode 100644 nuxt.config.js create mode 100644 nuxt.config.ts create mode 100644 plugins/vuetify.ts create mode 100644 tsconfig.json diff --git a/jsconfig.json b/jsconfig.json deleted file mode 100644 index b38a77a..0000000 --- a/jsconfig.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "compilerOptions": { - "baseUrl": ".", - "paths": { - "~/*": ["./*"], - "@/*": ["./*"], - "~~/*": ["./*"], - "@@/*": ["./*"] - } - }, - "vueCompilerOptions": { - "target": 2.7 - }, - "exclude": ["node_modules", ".nuxt", "dist"] -} diff --git a/layouts/default.vue b/layouts/default.vue index 2613cdb..78ecc8f 100644 --- a/layouts/default.vue +++ b/layouts/default.vue @@ -1,5 +1,5 @@