We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0d5b5fe commit d8439d0Copy full SHA for d8439d0
src/versions/v4.ts
@@ -41,7 +41,8 @@ interface ApiV4 {
41
export async function loadV4(mod: ApiV4 | null, stylesheet: string | null): Promise<UnifiedApi> {
42
// This is not Tailwind v4
43
if (!mod || !mod.__unstable__loadDesignSystem) {
44
- throw new Error('TODO')
+ throw new Error('Unable to load Tailwind CSS v4: Your installation of Tailwind CSS is not v4')
45
+
46
// TODO
47
// mod = (await import('tailwindcss-v4')) as ApiV4
48
}
0 commit comments