From e395d208fe8fb27f7efbe23b17a90ad77303834d Mon Sep 17 00:00:00 2001 From: Abhishiv Saxena Date: Mon, 7 Aug 2023 00:28:51 +0530 Subject: [PATCH] Update esbuild.mjs --- esbuild.mjs | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/esbuild.mjs b/esbuild.mjs index 5d444d5..0345157 100644 --- a/esbuild.mjs +++ b/esbuild.mjs @@ -1,5 +1,4 @@ import * as esbuild from "esbuild"; -import { sassPlugin, postcssModules } from "esbuild-sass-plugin"; (async () => { await esbuild.build({ @@ -11,13 +10,6 @@ import { sassPlugin, postcssModules } from "esbuild-sass-plugin"; format: "esm", sourcemap: true, minify: true, - plugins: [ - sassPlugin({ - type: "style", - transform: postcssModules({ - // ...put here the options for postcss-modules: https://github.com/madyankin/postcss-modules - }), - }), - ], + plugins: [], }); })();