Skip to content

Troubleshooting

Masanori Ohgita edited this page Jul 13, 2023 · 5 revisions

Troubleshooting

Client

Error: Can't resolve './node_modules/@angular/material/prebuilt-themes/indigo-pink.css' in ...

Since this project is a monorepo, some files have different locations than the Angular standard.

So you need to fix the path to the css file in your angular.json.

"./node_modules/@angular/material/prebuilt-themes/indigo-pink.css"
-> "../node_modules/@angular/material/prebuilt-themes/indigo-pink.css"


Home