From 589b1533805ea40c2010d03e54c291aeaea85513 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=A5=9E=E4=BB=99=E9=83=BD=E6=B2=A1=E7=94=A8?= <615206459@qq.com> Date: Tue, 27 Feb 2024 11:04:01 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tsconfig.json | 2 +- vite.config.mts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index d2fbf12..604d8c3 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -15,7 +15,7 @@ "paths": { "/@/*": ["./src/*"], "/$/*": ["./src/modules/*"], - "/#/*": ["./types/*"], + "/#/*": ["./src/plugins/*"], "/~/*": ["./packages/*"] } }, diff --git a/vite.config.mts b/vite.config.mts index 357ab0f..703f2f7 100644 --- a/vite.config.mts +++ b/vite.config.mts @@ -48,7 +48,7 @@ export default ({ mode }: ConfigEnv): UserConfig => { alias: { "/@": resolve("src"), "/$": resolve("src/modules"), - "/#": resolve("types"), + "/#": resolve("src/plugins"), "/~": resolve("packages") } },