-
I am not allowed to make requests to :root {
--tui-font-heading: "Inter var";
--tui-font-text: "Inter var";
}
How can I prevent the request to |
Beta Was this translation helpful? Give feedback.
Answered by
pwespi
Jun 23, 2022
Replies: 1 comment 1 reply
-
I had the same issue and solved it by using "styles": [
"node_modules/@taiga-ui/core/styles/taiga-ui-global.less",
"node_modules/@taiga-ui/core/styles/theme/dialog.less",
"node_modules/@taiga-ui/core/styles/theme/variables.less",
"node_modules/@taiga-ui/core/styles/theme/wrapper.less",
"src/styles.css"
] instead of "styles": [
"node_modules/@taiga-ui/core/styles/taiga-ui-global.less",
"node_modules/@taiga-ui/core/styles/taiga-ui-theme.less",
"src/styles.css"
] in |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
robingenz
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I had the same issue and solved it by using
instead of
in
angular.json
.