Initial commit

This commit is contained in:
Yaser
2026-08-13 20:26:04 +03:30
commit 056fa76514
1923 changed files with 113766 additions and 0 deletions

19
config-overrides.js Normal file
View File

@@ -0,0 +1,19 @@
const { override, addWebpackAlias } = require("customize-cra");
const path = require("path");
module.exports = override(
// add an alias for "ag-grid-react" imports
addWebpackAlias({
"@components": path.resolve(__dirname, "src/components/"),
"@features": path.resolve(__dirname, "src/features/"),
"@core": path.resolve(__dirname, "src/core/"),
"@api": path.resolve(__dirname, "src/api"),
"@hocs": path.resolve(__dirname, "src/hocs"),
"@consts": path.resolve(__dirname, "src/consts"),
"@context": path.resolve(__dirname, "src/context"),
"@hook": path.resolve(__dirname, "src/hook"),
"@lib": path.resolve(__dirname, "src/lib"),
})
// adjust the underlying workbox
);