-
Hey, This is the weird issue I'm facing while importing the stylesheet in |
Beta Was this translation helpful? Give feedback.
Answered by
kiliman
Jun 22, 2022
Replies: 1 comment 1 reply
-
Remix will not compile your SCSS files automatically. You'll need to use import stylesHref from '~/app/styles/styles.css'
export const links: LinksFunction = () => [
{ rel: 'stylesheet', href: stylesHref },
] |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
ram2104
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Remix will not compile your SCSS files automatically. You'll need to use
postcss
to do compile to a css file and import that. This is similar to how you would run tailwind compiler to generate the css file.