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
Describe the bug When initializing the component the flags do not load. I followed the steps in the documentation
imports:[ ... MatSelectCountryModule.forRoot('en'), ... ]
..."assets": [ "src/favicon.ico", "src/assets", "src/manifest.webmanifest", { "glob": "**/*", "input": "node_modules/svg-country-flags/svg", "output": "src/assets/svg-country-flags/svg" } ],...
Screenshots
The text was updated successfully, but these errors were encountered:
@apangr having the same issue, I ended up manually copied the svg-country-flags/svg from node_modules to my assets folder.
Sorry, something went wrong.
@jezmaghuyop Thanks for the workaround it works on angular 14
In angular 17 (maybe other versions), you just have to put ./assets/svg-country-flags/svg, instead of src/assets/svg-country-flags/svg, like this:
./assets/svg-country-flags/svg
src/assets/svg-country-flags/svg
..."assets": [ "src/favicon.ico", "src/assets", { "glob": "**/*", "input": "./node_modules/svg-country-flags/svg", "output": "./assets/svg-country-flags/svg" } ],...
Then It will work without copying the module.
same issue, installed through npm, moreover there are no flags in my local folder(assets)
No branches or pull requests
Describe the bug
When initializing the component the flags do not load. I followed the steps in the documentation
Screenshots
The text was updated successfully, but these errors were encountered: