We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
NextJs: Global CSS cannot be imported from within node_modules. vercel/next.js#19936
nextjs restricts importing csss from node modules folder. file here: https://github.com/digidem/leaflet-side-by-side/blob/gh-pages/index.js has 2 css imports
require('./layout.css') require('./range.css')
which dont work in nextjs.
The text was updated successfully, but these errors were encountered:
i have fixed it by removing those css and directly importing from my app code using cdn https://cdn.jsdelivr.net/gh/digidem/leaflet-side-by-side/layout.css https://cdn.jsdelivr.net/gh/digidem/leaflet-side-by-side/range.css
i will raise a pull request.
Sorry, something went wrong.
No branches or pull requests
NextJs: Global CSS cannot be imported from within node_modules.
vercel/next.js#19936
nextjs restricts importing csss from node modules folder.
file here:
https://github.com/digidem/leaflet-side-by-side/blob/gh-pages/index.js
has 2 css imports
which dont work in nextjs.
The text was updated successfully, but these errors were encountered: