diff --git a/docs/index.html b/docs/index.html
index 296dde1..45b4d4f 100644
--- a/docs/index.html
+++ b/docs/index.html
@@ -2,11 +2,11 @@
-
+
Vite + Svelte + TS
-
-
+
+
diff --git a/vite.config.ts b/vite.config.ts
index 8a1baa5..e33b588 100644
--- a/vite.config.ts
+++ b/vite.config.ts
@@ -1,11 +1,12 @@
-import { defineConfig } from 'vite'
-import { svelte } from '@sveltejs/vite-plugin-svelte'
+import { defineConfig } from "vite";
+import { svelte } from "@sveltejs/vite-plugin-svelte";
// https://vite.dev/config/
export default defineConfig({
plugins: [svelte()],
+ base: "./",
build: {
- outDir: './docs',
+ outDir: "./docs",
emptyOutDir: true,
- }
-})
+ },
+});