Feat: Reworked ENTIRE Project for Readability

This commit is contained in:
Youwes09
2026-04-20 00:19:22 -05:00
parent 005680394e
commit 4b97f4a6c9
191 changed files with 19210 additions and 15915 deletions
+9 -3
View File
@@ -7,8 +7,14 @@ export default defineConfig({
clearScreen: false,
resolve: {
alias: {
$store: path.resolve("./src/store"),
$components: path.resolve("./src/components"),
"@features": path.resolve("./src/features"),
"@core": path.resolve("./src/core"),
"@shared": path.resolve("./src/shared"),
"@api": path.resolve("./src/api"),
"@store": path.resolve("./src/store"),
"@types": path.resolve("./src/types"),
"@design": path.resolve("./src/design"),
"@assets": path.resolve("./src/assets"),
},
},
server: {
@@ -24,4 +30,4 @@ export default defineConfig({
minify: !process.env.TAURI_DEBUG ? "esbuild" : false,
sourcemap: !!process.env.TAURI_DEBUG,
},
});
});