You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Most of the packages have demo projects on codesandbox.io. All of those examples that I looked at have the same basic setup, suggesting:
// the styles are actually loaded as the pre-compiled themes in the index.html
// to speed up sandbox compilation. If you want to update the theme, you'll need
// to uncomment this line and remove the `<link>` tag in the `index.html`
// import "./styles.scss"
Making exactly those two changes (removing the <link> tag and uncommenting the import statement) results in a broken sandbox displaying the following errors:
Could not resolve react-md: Could not resolve react-md
╷
2 │ ┌ @forward "react-md" with (
3 │ │ $rmd-theme-light: true,
4 │ │ $rmd-theme-primary: $rmd-teal-500,
5 │ │ $rmd-theme-secondary: $rmd-pink-a-200,
6 │ │ );
│ └─^
╵
src/_everything.scss 2:1 @use
stdin 1:1 root stylesheet
I have forked the above example and made the changes, I hope the link is publicly readable:
I think all the details about setup, resolutions, devices and so on is not relevant to this bug, but if I should provide any additional info, let me know.
The text was updated successfully, but these errors were encountered:
Most of the packages have demo projects on
codesandbox.io
. All of those examples that I looked at have the same basic setup, suggesting:Example (of an example): https://codesandbox.io/s/gzvr3
Making exactly those two changes (removing the
<link>
tag and uncommenting theimport
statement) results in a broken sandbox displaying the following errors:I have forked the above example and made the changes, I hope the link is publicly readable:
https://codesandbox.io/s/badge-example-simple-examples-forked-vy0ex?file=/public/index.html
I think all the details about setup, resolutions, devices and so on is not relevant to this bug, but if I should provide any additional info, let me know.
The text was updated successfully, but these errors were encountered: