-
I removed any custom css in my
"scripts": {
"server": "hugo server -b http://localhost -p 1313",
"dev": "NODE_ENV=development ./themes/congo/node_modules/tailwindcss/lib/cli.js -c ./themes/congo/tailwind.config.js -i ./themes/congo/assets/css/main.css -o ./assets/css/compiled/main.css --jit -w",
"build": "NODE_ENV=production ./themes/congo/node_modules/tailwindcss/lib/cli.js -c ./themes/congo/tailwind.config.js -i ./themes/congo/assets/css/main.css -o ./assets/css/compiled/main.css --jit"
} When I run /* LineHighlight */
.chroma .hl {
margin-left: -1rem;
margin-right: -1rem;
display: block;
width: auto;
background-color: rgba(var(--color-primary-100), <alpha-value>);
padding-left: 1rem;
padding-right: 1rem;
}
.dark .chroma .hl {
background-color: rgba(var(--color-primary-900), <alpha-value>);
} It seems the |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Okay -- figured it out. Silly, silly mistake. After upgrading the congo submodule, I needed to change into the congo directory and rerun |
Beta Was this translation helpful? Give feedback.
Okay -- figured it out. Silly, silly mistake.
After upgrading the congo submodule, I needed to change into the congo directory and rerun
npm install
.After doing that and then in the root project directory
npm run build
and thenhugo server -D
everything seems to be working fine. 😃