From 8f55e91b5c43cd0fe52f5a836e142cdf6cd613bb Mon Sep 17 00:00:00 2001 From: Nicolas Gallagher Date: Thu, 22 Aug 2024 16:47:29 -0700 Subject: [PATCH] Use 'property-specificity' style resolution in rollup-example --- apps/rollup-example/rollup.config.mjs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/apps/rollup-example/rollup.config.mjs b/apps/rollup-example/rollup.config.mjs index 89452aeb9..bdde22772 100644 --- a/apps/rollup-example/rollup.config.mjs +++ b/apps/rollup-example/rollup.config.mjs @@ -17,7 +17,10 @@ const config = { }, // See all options in the babel plugin configuration docs: // https://stylexjs.com/docs/api/configuration/babel-plugin/ - plugins: [stylexPlugin({ fileName: 'stylex.css' })], + plugins: [stylexPlugin({ + fileName: 'stylex.css', + styleResolution: 'property-specificity' + })], }; export default config;