Next.js - import css file does not work

后端 未结 6 737
北荒
北荒 2021-02-18 22:31

I am creating a project with react, redux and next.js, and want to import CSS files in js.

I followed instructions in next.js/#css and next-css, but find out that CSS st

6条回答
  •  离开以前
    2021-02-18 23:10

    For anyone who comes here ,the new Next JS supports CSS out of the box. The catch is that for modules (components), they must be named as the component. So, if you have a header inside a components directory, it must be named header.module.css

    built-in-css-module-support-for-component-level-styles

提交回复
热议问题