Bootstrap integration #798
Unanswered
HerbertRHolder
asked this question in
Help
Replies: 1 comment 1 reply
-
What's not recognized in the React version? The CSS? You might need to import the CSS and pass it to Remix: // root.jsx
import stylesHref from 'bootstrap/dist/css/bootstrap.min.css';
export const links: LinksFunction = () => {
return [
{ rel: "stylesheet", href: stylesHref },
]
} |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
How would I install bootstrap in my project? I can integrate ths minified css but not the bootstrap vanilla JS. Also ive tried the react version of bootstrap that inserts into node_modules but for some reason it is not recognizing it.
Beta Was this translation helpful? Give feedback.
All reactions