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 5e1e4f3 commit 24bd137Copy full SHA for 24bd137
src/index.ts
@@ -34,13 +34,11 @@ export const tailwindPlugin = (options: TailwindPluginOptions = {}): Plugin => {
34
35
async transform(src, id) {
36
if (!isPotentialCssRootFile(id)) return null;
37
- console.log('BOSH: tailwind-plugin: transform', { id, src });
38
39
using I = new Instrumentation();
40
I.start('[@tailwindcss/tsdown] Generate CSS');
41
42
let root = roots.get(id);
43
- console.log('BOSH: tailwind-plugin: root', root);
44
45
let result = await root.generate(
46
src,
0 commit comments