mirror of
https://github.com/Ku6epXBOCTuK/easy-png-tools.git
synced 2026-09-14 21:46:35 +00:00
18 lines
472 B
JavaScript
18 lines
472 B
JavaScript
import postcssHct from "./scripts/postcss-hct.mjs";
|
|
import postcssGlobalData from "@csstools/postcss-global-data";
|
|
import postcssCustomMedia from "postcss-custom-media";
|
|
|
|
export default {
|
|
plugins: [
|
|
// Breakpoints live only in preview.css (next to the --bp-* tokens);
|
|
// global-data injects them so @media (--bp-*) expands in every file.
|
|
postcssGlobalData({
|
|
files: ["src/preview.css"],
|
|
}),
|
|
postcssCustomMedia({
|
|
preserve: false,
|
|
}),
|
|
postcssHct,
|
|
],
|
|
};
|