sunmao-ui/packages/editor/postcss.config.js
Yanzhen Yu be72b98f24 manage editor styles in a single CSS
Some frameworks like Next.js does not like global CSS from node
modules, so we are going to bundle CSS into a single file with
postcss.

ref: https://github.com/vercel/next.js/discussions/27953
2022-01-04 13:44:30 +08:00

4 lines
64 B
JavaScript

module.exports = {
plugins: [require('postcss-import')()],
};