I have an astro project with a global.css style. Inside, I import an open-props css file like so:
@import url("../../node_modules/open-props/open-props.min.css");
My postcss.config.cjs as this configuration:
require('postcss-combine-duplicated-selectors')({
removeDuplicatedProperties: true,
removeDuplicatedValues: false
}), ...
When I try to boot astro with pnpm astro dev, the "transform" process of the global.css hangs for 60 or so seconds due to the inclusion of the open-props.min.css and transformation with this plugin. Without removeDuplicatedProperties: true the boot process of astro is blazing fast.
I have an astro project with a
global.cssstyle. Inside, I import an open-props css file like so:My
postcss.config.cjsas this configuration:When I try to boot astro with
pnpm astro dev, the "transform" process of the global.css hangs for 60 or so seconds due to the inclusion of theopen-props.min.cssand transformation with this plugin. WithoutremoveDuplicatedProperties: truethe boot process of astro is blazing fast.