Next.js学习日记(二):样式

212 阅读1分钟

依赖

除了next react还需要webpack@^4.0.0和"@zeit/next-css": "^1.0.1"

配置文件

next.config.js

const withCSS=require("@zeit/next-css")
module.exports=withCSS()

使用

在style文件夹里添加样式,在需要使用的组件处引入即可 同理Sass

const withCSS=require("@zeit/next-css")
const withSass=require("@zeit/next-sass")
module.exports=withCSS()
module.exports=withSass()