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
To use the newest version of Kirby you have to add reference to the kirby polyfills in the angular.json file.
angular.json
The documentations says it should be done like build > options > assets in angular.json:
build > options > assets
{ ... "build": { "options": { "assets": [ ... "../node_modules/@kirbydesign/designsystem/polyfills", ... ], } } }
It should be :
{ ... "build": { "options": { "assets": [ ... { "glob": "**/*", "input": "./node_modules/@kirbydesign/designsystem/polyfills", "output": "./assets" }, ... ], } } }
see here
The text was updated successfully, but these errors were encountered:
@jakobe See #88 where is made the changes.
Sorry, something went wrong.
jakobe
No branches or pull requests
To use the newest version of Kirby you have to add reference to the kirby polyfills in the
angular.json
file.The documentations says it should be done like
build > options > assets
inangular.json
:It should be :
see here
The text was updated successfully, but these errors were encountered: