From 3eaa7a869bd6c3346f0fde8f4de4650674ba0da9 Mon Sep 17 00:00:00 2001 From: OCDkirby Date: Sun, 9 Jul 2023 12:34:39 -0500 Subject: [PATCH] Start working on layout --- src/App.vue | 197 +++++++++++++++++++++++++++++++++++++++++-------- src/main.js | 2 - vite.config.js | 4 +- 3 files changed, 170 insertions(+), 33 deletions(-) diff --git a/src/App.vue b/src/App.vue index 705e012..d03d1df 100644 --- a/src/App.vue +++ b/src/App.vue @@ -1,42 +1,181 @@ + + diff --git a/src/main.js b/src/main.js index 0ac3a5f..01433bc 100644 --- a/src/main.js +++ b/src/main.js @@ -1,5 +1,3 @@ -import './assets/main.css' - import { createApp } from 'vue' import App from './App.vue' diff --git a/vite.config.js b/vite.config.js index 6516dc2..7f8db1c 100644 --- a/vite.config.js +++ b/vite.config.js @@ -4,7 +4,7 @@ * The component library is Naive UI. * * Important notes: - * The project automatically imports vue and naive-ui code as you go, which saves significant space in your script blocks. Just make sure to export your components. + * The project automatically imports *most* vue and naive-ui code as you go, which saves significant space in your script blocks. Just make sure to export your components. * However, the icon library does not have an auto-importer, so your script blocks will need to import those. */ @@ -44,5 +44,5 @@ export default defineConfig({ '@': fileURLToPath(new URL('./src', import.meta.url)) } }, - base: '/rpcsx-site/' + base: '/rpcsx-site/', });