如何在Postjss配置中使用Nextjs中的样式化组件

时间:2019-06-02 00:47:09

标签: reactjs next.js styled-components

我是一名优秀的开发人员,我正在研究Nextjs,带有样式组件的Reactjs项目,该项目已经完成,但是我需要在IE11中支持变量以及剪切路径

所以我正在尝试配置postcss样式,postcss-css变量,postcss-clip-path-polyfill

postcss.config,js

module.exports = {
  plugins: {
    // Illustrational
    'postcss-css-variables': {},
    'postcss-styled':{}
  }
}

next.config.js

const withPlugins = require("next-compose-plugins");
const withCSS = require("@zeit/next-css");
const withImages = require("next-images");

module.exports = withPlugins([withCSS, withImages]);

0 个答案:

没有答案