feat: add design system
Some checks failed
Deploy to VPS (dist) / deploy (push) Failing after 46s

This commit is contained in:
Hewston Fox
2026-03-12 00:42:41 +02:00
parent fcb8dab8a0
commit 55bf63e215
93 changed files with 1647 additions and 86 deletions

View File

@@ -9,6 +9,7 @@ import i18nextConfig, {
LOCALES_PATH,
LOCAL_LOCALES_PATH,
} from "./i18next.config";
import path from "node:path";
export default defineConfig({
plugins: [
@@ -46,4 +47,10 @@ export default defineConfig({
__LOCALES_PATH__: JSON.stringify(LOCALES_PATH),
__DEFAULT_LANG__: JSON.stringify(DEFAULT_LANGUAGE),
},
resolve: {
alias: {
"@": path.resolve(__dirname, "./src"),
"@components": path.resolve(__dirname, "./src/components"),
},
},
});