diff --git a/i-love-x-engine b/i-love-x-engine index 1e20c57..3c80662 160000 --- a/i-love-x-engine +++ b/i-love-x-engine @@ -1 +1 @@ -Subproject commit 1e20c574c2d22c23d80bf570103d4ed66212ba8b +Subproject commit 3c8066204005918735c3a37340fb8a126b793981 diff --git a/tsconfig.app.json b/tsconfig.app.json index 913b8f2..04b5518 100644 --- a/tsconfig.app.json +++ b/tsconfig.app.json @@ -6,7 +6,8 @@ "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo", "paths": { - "@/*": ["./src/*"] + "@/*": ["./src/*"], + "@src/*": ["./src/*"] } } } diff --git a/vite.config.ts b/vite.config.ts index 4217010..df56389 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -12,7 +12,8 @@ export default defineConfig({ ], resolve: { alias: { - '@': fileURLToPath(new URL('./src', import.meta.url)) + '@': fileURLToPath(new URL('./src', import.meta.url)), + '@src': fileURLToPath(new URL('./src', import.meta.url)), }, }, })