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.
browser-tailwind
1 parent 307821a commit 6ced687Copy full SHA for 6ced687
packages/browser-tailwind/src/index.ts
@@ -1,4 +1,5 @@
1
-import postcss from "postcss";
+//@ts-nocheck
2
+import postcss, { Plugin } from "postcss";
3
import tailwindcss, { Config } from "tailwindcss";
4
import {
5
VIRTUAL_CONTENT_EXTNAME,
@@ -16,7 +17,7 @@ export async function compileTailwindCSS(
16
17
contentInput: string,
18
extname: string,
19
config: Config | {} = {},
- plugins = [],
20
+ plugins: Plugin[] = [],
21
) {
22
self[VIRTUAL_CONTENT_EXTNAME] = extname;
23
// Tailwind scans the config.content for files to parse classNames -> set a virtual file here
0 commit comments