最新文章:
- 什么是静态服务器
- npx是什么东东,跟npm有啥关系?
- AMD宣布将在全球范围内裁员4%
- 处理Deprecation Warning: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0.警告
- 什么是原子化CSS
您的位置:
富录-前端开发|web技术博客
>
系统环境 >
处理Deprecation Warning: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0.警告
处理Deprecation Warning: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0.警告
发布时间:2024年10月09日 评论数:抢沙发阅读数: 4892
最近是不是都看到过这样的警告?
Deprecation Warning: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0.
对于有强迫症的,看到这一片肯定很烦。
咋回事呢?
原来Sass有个重大变更
Dart Sass 最初使用的API基于 Node Sass,但在 Dart Sass 1.45.0 中将其替换为新的现代API。旧版JS API现已弃用,并将在 Dart Sass 2.0.0 中被删除。
详情:请看https://sass-lang.com/documentation/breaking-changes/legacy-js-api/
如何处理呢?
简单,在vite.config.js文件中加上一些配置,如下
export default defineConfig({ css: { preprocessorOptions: { scss: { api: 'modern-compiler' } }, }, ... })
本文作者:DGF
文章标题:
处理Deprecation Warning: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0.警告
本文地址: https://arbays.com/post-245.html  本文已被百度收录!
版权声明:若无注明,本文皆为“富录-前端开发|web技术博客”原创,转载请保留文章出处。
本文地址: https://arbays.com/post-245.html  本文已被百度收录!
版权声明:若无注明,本文皆为“富录-前端开发|web技术博客”原创,转载请保留文章出处。
相关文章