From 0c68b5f283895b2a81ad744deb6f0702aaf57cdf Mon Sep 17 00:00:00 2001 From: Cosmin Popovici <1656595+cossssmin@users.noreply.github.com> Date: Sat, 19 Jul 2025 15:00:20 +0300 Subject: [PATCH] fix: `from` option warning Mutes the PostCSS warning about `from` not being set. --- src/TailwindConverter.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/TailwindConverter.ts b/src/TailwindConverter.ts index 59a17d1..43ff16f 100644 --- a/src/TailwindConverter.ts +++ b/src/TailwindConverter.ts @@ -79,6 +79,7 @@ export class TailwindConverter { async convertCSS(css: string) { const nodesManager = new TailwindNodesManager(); const parsed = await postcss(this.config.postCSSPlugins).process(css, { + from: undefined, parser: postcssSafeParser, });