You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The documentation about how to inline external CSS is very dense. This merge request suggests, it should work to include a CSS file with a normal a <link>:
My templates and the style.css reside in the same directory templates. Sending the template without <link> tag works as expected, also putting all the CSS in a <style> works with the inlining.
When including the external CSS file like shown a the beginning throws the following error:
Error: getaddrinfo ENOTFOUND style.css
at GetAddrInfoReqWrap.onlookup [as oncomplete] (node:dns:71:26)
The adapter config shown in the docs also doesn't change anything and seem to reflect the default config. As it seems to be a path resolving issue I tried quite a few paths in the <link> but nothing like style.css, ./style.css, /style.css or with templates prefixed seemed to work.
The text was updated successfully, but these errors were encountered:
The documentation about how to inline external CSS is very dense. This merge request suggests, it should work to include a CSS file with a normal a
<link>
:My templates/handlebars config looks like this:
My templates and the
style.css
reside in the same directorytemplates
. Sending the template without<link>
tag works as expected, also putting all the CSS in a<style>
works with the inlining.When including the external CSS file like shown a the beginning throws the following error:
The adapter config shown in the docs also doesn't change anything and seem to reflect the default config. As it seems to be a path resolving issue I tried quite a few paths in the
<link>
but nothing likestyle.css
,./style.css
,/style.css
or withtemplates
prefixed seemed to work.The text was updated successfully, but these errors were encountered: