Fork me on GitHub
#shadow-cljs
<
2023-07-04
>
Dumch00:07:22

Hey guys! Help me figure out how to reference node_modules in the head of my main html file? I tried

<head>
  <link rel="stylesheet" href="node_modules/codemirror/addon/hint/show-hint.css"/>
  <link rel="stylesheet" href="node_modules/codemirror/lib/codemirror.css"/>
...
But it doesn't work

thheller06:07:25

my advice would be to not do that. instead copy the file someplace else first. something like public/css or so

🙏 2