提问人:Gourav Wadhwan 提问时间:8/22/2023 最后编辑:Chris BarrGourav Wadhwan 更新时间:10/30/2023 访问量:587
预期的标识符,但在将 angular 10 更新到 14 时发现“*” [css-syntax-error]
Expected identifier but found "*" [css-syntax-error] while updating angular 10 to 14
问:
当我将我的 angular 版本从 10 更新到 14 时,在进行构建时,我在命令提示符下看到了警告。错误如下:-
警告: ▲ [警告] 预期的标识符,但找到“*” [css-syntax-error]
styles.css:1617:2:
1617 │ *cursor: hand;
╵ ^
SS:-
在进行构建时,从 commant 提示符中删除此 CSS 语法错误。
答:
0赞
Blondu
9/14/2023
#1
Angular更新后,我发现这些警告来自:“node_modules/datatables.net-dt/css/jquery.dataTables.css”
重新安装软件包:
npm i datatables.net-dt
解决了问题。
0赞
Ramesh Mishra
10/30/2023
#2
将您的 CSS 文件扩展名从 CSS->SCSS.这在 vercel 上部署时对我有用。
评论