Next.js - import css file does not work

后端 未结 6 750
北荒
北荒 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

    Add {name}.css to src/static/styles/.

    Then modify the Head in src/pages/_document.js to include the following link:

    
        
    
    

提交回复
热议问题