From 4981ab406ff1981615ddd3959d41769707f0183b Mon Sep 17 00:00:00 2001 From: Athira P Babu Date: Thu, 15 May 2025 14:52:18 +0530 Subject: [PATCH] fix: test style --- rollup.config.js | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/rollup.config.js b/rollup.config.js index ba9276f..a9c6d4a 100644 --- a/rollup.config.js +++ b/rollup.config.js @@ -48,11 +48,17 @@ export default defineConfig([ postcss({ extensions: ['.css'], minimize: true, - modules: true, + modules: { + generateScopedName: '[name]__[local]___[hash:base64:5]', + localsConvention: 'camelCase' + }, inject: { insertAt: 'top' }, - extract: false + extract: false, + use: ['sass'], + autoModules: true, + namedExports: true }), typescript({ tsconfig: './tsconfig.json',