From 7757d96f3444c283a21021324a7abcb22a29ee2e Mon Sep 17 00:00:00 2001 From: running0503 Date: Wed, 31 May 2023 07:27:16 +0000 Subject: [PATCH] =?UTF-8?q?update=20vite/plugins/unocss.ts.=20=E5=9B=A0?= =?UTF-8?q?=E4=BD=8E=E6=B5=8F=E8=A7=88=E5=99=A8=E4=B8=8D=E6=94=AF=E6=8C=81?= =?UTF-8?q?=20top-level=20await=EF=BC=8C=E4=BC=9A=E6=8A=A5=20=5F=5Funo.css?= =?UTF-8?q?:9=20Uncaught=20SyntaxError:=20Unexpected=20reserved=20word?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit hmrTopLevelAwait unocss默认是true,低版本浏览器是不支持启动后会报错 Signed-off-by: running0503 --- vite/plugins/unocss.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/vite/plugins/unocss.ts b/vite/plugins/unocss.ts index 997335af..8d4e012f 100644 --- a/vite/plugins/unocss.ts +++ b/vite/plugins/unocss.ts @@ -8,6 +8,7 @@ export default () => { shortcuts: { 'panel-title': 'pb-[5px] font-sans leading-[1.1] font-medium text-base text-[#6379bb] border-b border-b-solid border-[var(--el-border-color-light)] mb-5 mt-0' - } + }, + hmrTopLevelAwait: false, // unocss默认是true,低版本浏览器是不支持的,启动后会报错 }); }; -- Gitee