Skip to content

Commit

Permalink
Use 'property-specificity' style resolution in rollup-example
Browse files Browse the repository at this point in the history
  • Loading branch information
necolas committed Aug 22, 2024
1 parent 105bd57 commit 2a55a48
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion apps/rollup-example/rollup.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -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;

0 comments on commit 2a55a48

Please sign in to comment.