vite vue 项目中使用frappe-gantt

2023-05-13阅读(2755)评论(0)牵着狗狗看MM

苏州实时公交查询

之前搭建的vue2+vite框架 https://github.com/w3cways/vite-vue2

想要使用frappe-gantt ,文件中码了如下代码

//@ts-ignore
import Gantt from 'frappe-gantt'
import 'frappe-gantt/dist/frappe-gantt.css'

启动时会有如下报错信息

[vite] Internal server error: Preprocessor dependency "sass" not found. Did you install it?

报错位置:/node_modules/_frappe-gantt@0.6.1@frappe-gantt/src/gantt.scss

翻下插件的代码

//node_modules\_frappe-gantt@0.6.1@frappe-gantt\src\index.js

//这个文件中引入了一个scss,导致保存

import './gantt.scss';

解决方法很简单,安装下scss即可

npm i sass -D

 

赞(1)
转载请注明来源:Web前端(W3Cways.com) - Web前端学习之路 » vite vue 项目中使用frappe-gantt
分享到: 更多 (0)