我是靠谱客的博主 炙热钢笔,最近开发中收集的这篇文章主要介绍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,要想支持scss或less则需要一些配置所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

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

评论列表共有 0 条评论

立即
投稿
返回
顶部