Path Aliases not working in NextJS
Unanswered
Barbary Lion posted this in #help-forum
Barbary LionOP
I am trying to add path aliases in nextjs app router with src directory using the following snippet in tsconfig.json file but its not working;
"baseUrl": ".",
"paths": {
"@/": ["./src/"],
"@/ui/": ["./src/components/ui/"]
}
"baseUrl": ".",
"paths": {
"@/": ["./src/"],
"@/ui/": ["./src/components/ui/"]
}