我是靠谱客的博主 精明星星,这篇文章主要介绍nextjs使用scss或lessnext默认只支持css,要想支持scss或less则需要一些配置,现在分享给大家,希望可以做个参考。

next默认只支持css,要想支持scss或less则需要一些配置

  1. 安装资源
  • npm install --save @zeit/next-sass node-sass 或者 yarn add @zeit/next-sass node-sass
  • npm install --save @zeit/next-less less 或者 yarn add @zeit/next-less less
  1. next.config.js中配置
// css跟less 并存使用
const withCSS = require('@zeit/next-css')
const withLess = require('@zeit/next-less')
module.exports = withLess(withCSS({}))

// css跟scss 并存使用
const withSass = require('@zeit/next-sass')
const withLess = require('@zeit/next-less')
module.exports = withSass(withCSS({}))

// scss或less 单独使用
const withSass = require('@zeit/next-sass')
// const withLess = require('@zeit/next-less')
module.exports = withSass()
// module.exports = withLess()

最后

以上就是精明星星最近收集整理的关于nextjs使用scss或lessnext默认只支持css,要想支持scss或less则需要一些配置的全部内容,更多相关nextjs使用scss或lessnext默认只支持css内容请搜索靠谱客的其他文章。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(49)

评论列表共有 0 条评论

立即
投稿
返回
顶部