From b9823b01e5845a0a28aadf5b50d9312b64444b6e Mon Sep 17 00:00:00 2001 From: Agent Date: Mon, 23 Mar 2026 15:16:44 +0000 Subject: [PATCH] =?UTF-8?q?fix:=20=E7=A7=BB=E5=8A=A8=20index.html=20?= =?UTF-8?q?=E5=88=B0=E6=A0=B9=E7=9B=AE=E5=BD=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/index.html => index.html | 0 vite.config.js | 8 +++++++- 2 files changed, 7 insertions(+), 1 deletion(-) rename src/index.html => index.html (100%) diff --git a/src/index.html b/index.html similarity index 100% rename from src/index.html rename to index.html diff --git a/vite.config.js b/vite.config.js index 9742927..0177f64 100644 --- a/vite.config.js +++ b/vite.config.js @@ -4,5 +4,11 @@ import uni from '@dcloudio/vite-plugin-uni' export default defineConfig({ plugins: [ uni() - ] + ], + root: '.', + build: { + rollupOptions: { + input: './index.html' + } + } })