PostCSS plugin for importing other stylesheet source files anywhere in your CSS.
npm install postcss-nested-importPostCSS plugin for importing other stylesheet source files anywhere in your CSS.
Before:
``css
/ vendor.css /
.vendor {
background: silver;
}
/ index.css /
:global {
@nested-import './vendor.css';
}
`
After:
`css`
:global {
.vendor {
background: silver;
}
}
`js``
postcss([require("postcss-nested-import")]);
See PostCSS docs for examples for your environment.