From 9e4af61023129cb19f287a7d4c43893558cdbd1b Mon Sep 17 00:00:00 2001 From: Raikkonen23 <75067386+Raikkonen23@users.noreply.github.com> Date: Mon, 15 Jul 2024 17:49:33 +0800 Subject: [PATCH] chore: add Vite configuration file --- vite.config.js | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 vite.config.js diff --git a/vite.config.js b/vite.config.js new file mode 100644 index 0000000..0139633 --- /dev/null +++ b/vite.config.js @@ -0,0 +1,6 @@ +import { defineConfig } from 'vite'; + +export default defineConfig({ + // 設定網頁進入點 + base: "/" + }); \ No newline at end of file