We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
cwd
i am new in angular and i am stuck at this error. ERROR in The cwd option must be a path to a directory
can someone help me?
The text was updated successfully, but these errors were encountered:
this error can happen when you pass wrong path for glob parameter for assets in angular.json ex.
glob
angular.json
{ "glob": "**", "input": "src/assets/pwa", "output": "'assets'" }
this should be changed to:
{ "glob": "**/*", "input": "src/assets/pwa", "output": "'assets'" }
I met this case updating to Angular v11, previous glob variant was working fine before updating
Sorry, something went wrong.
No branches or pull requests
i am new in angular and i am stuck at this error.
ERROR in The
cwd
option must be a path to a directorycan someone help me?
The text was updated successfully, but these errors were encountered: