Skip to content

Commit 7a23329

Browse files
committed
Fix: removed top level await
1 parent a2f846a commit 7a23329

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/hooks/breakpoint.js renamed to src/hooks/breakpoint.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import { useEffect, useState } from "react";
22
import { default as resolveConfig } from "tailwindcss/resolveConfig";
3-
4-
let tailwindConfig = (await import("../../tailwind.config.js")).default;
3+
import tailwindConfig from "../../tailwind.config.js";
54

65
const config = resolveConfig(tailwindConfig);
76

0 commit comments

Comments
 (0)