mirror of
https://github.com/smartxworks/sunmao-ui.git
synced 2024-12-09 09:20:18 +08:00
be72b98f24
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
4 lines
64 B
JavaScript
4 lines
64 B
JavaScript
module.exports = {
|
|
plugins: [require('postcss-import')()],
|
|
};
|