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
import sheet from './styles.css' with { type: 'css' }; // ❌ vite error
document.adoptedStyleSheets = [sheet];
import sheet from './styles.css?inline' with { type: 'css' };
document.adoptedStyleSheets = [sheet]; // ❌ error: sheet is not a CSSStyleSheet. It's a string.
Describe the bug
Reproduction
https://stackblitz.com/edit/vitejs-vite-v6dufd
System Info
Used Package Manager
pnpm
The text was updated successfully, but these errors were encountered: