From 7c00f8bb1e662d92a818967eae8a3545e2dbe7b9 Mon Sep 17 00:00:00 2001 From: Ilia Mashkov Date: Sat, 18 Apr 2026 15:41:08 +0300 Subject: [PATCH] chore: add $routes and @ aliases to vitest config --- vitest.config.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/vitest.config.ts b/vitest.config.ts index 5d79ef1..bbeb809 100644 --- a/vitest.config.ts +++ b/vitest.config.ts @@ -16,6 +16,8 @@ export default defineConfig({ '$widgets': path.resolve(__dirname, './src/widgets'), '$features': path.resolve(__dirname, './src/features'), '$app': path.resolve(__dirname, './src/app'), + '$routes': path.resolve(__dirname, './src/routes'), + '@': path.resolve(__dirname, '.'), }, }, })