启动项目时出现Error: Node Sass does not yet support your current environment: Windows 64-bit with Unsupported runtime (72)

前几天趁假期重新装了一次系统,重新安装各种配置之后再启动项目的时候就报这个错误

第一反应就是去搜这个错误怎么解决,搜来搜去基本上都是让我重新安装node-sass,但我重装node-sass的时候又出现了新的错误,整了半天还是没整好

然后静下心来仔细看了一下错误提示,查看了下面那个github网址https://github.com/sass/node-sass/releases/tag/v4.9.3看到了这个

然后就知道是node版本的问题了,我的是v12.x,换了一个10.5的版本就好了

原文地址:https://www.cnblogs.com/wuyufei/p/11639408.html

时间: 2024-07-30 08:36:25

启动项目时出现Error: Node Sass does not yet support your current environment: Windows 64-bit with Unsupported runtime (72)的相关文章

Node Sass does not yet support your current environment: Linux 64-bit with Unsupported runtime

环境: ubuntu18 webstorm vue项目 报错原因: 缺少相关依赖 解决方法: npm rebuild node-sass 还未解决: npm uninstall --save node-sass npm install --save node-sass 还未解决: npm cache clean npm install --save node-sass 或者全部安装 npm install 原文地址:https://www.cnblogs.com/biaogejiushibiao

Spring:启动项目时加载数据库数据(总结)

在项目中需要启动程序时,要将数据库的用户信息表加载到内存中,找到一下几种方式. 1.实现ApplicationListener接口,重写onApplicationEvent方法,可以在项目启动的时候执行该方法. @Component("userInit") public class UserInit implements ApplicationListener { public static Map<String,User> map=new HashMap<Strin

使用servers 启动项目时 ,一直处于启动中, 最后出现无法的问题。

使用eclipse 中的servers 配置了一个server 来启动项目, 发现无法启动 排除法: 去掉项目配置,单独启动该server ,发现可以启动, 说明是项目出现问题 但是项目并没有报错, 没有报错可能是eclipse 平台的校验出现问题,这时候对项目手动执行 validate 即可看到问题 我的问题是mybatis 配置的一个xml 文件有问题,但是我写的时候eclipse 并没有提示错误.,使用validate 校验发现了写法错误.

Activiti+oracle 启动项目时不能自动建表或更新表的问题分析及解决办法

现象描述:按照正常配置,第一次启动时不能自动建表 关键配置片段如下: <bean id="processEngineConfiguration" class="org.activiti.spring.SpringProcessEngineConfiguration"> <property name="dataSource" ref="dataSource" /> <property name=&q

启动scala时出现“error while loading AnnotatedElement”

安装好scala后,在cmd中输入“scala”启动时,出现“error while loading AnnotatedElement” blabla的错误. 原因是我安装的2.9.0版本的scala并不适配之前安装的JAVA8. 解决方法是卸载旧版scala,并安装新版本,我重新安装的是2.11.6版本,错误消失.

Eclipse启动项目时,删除workspaces无用的工作区间

选择菜单栏的window-->Preferences-->General-->Startup and Shutdown-->workspaces, Recent workspaces下面的列表里就是已经设置过的工作区间.如果要删除已不用的,选中,点remove就好了. 如果之前选择不再提示,默认使用本工作区,在启动时想重新选择, 把右面的第一个复选框“Prompt for workspace on startup选上就可以了. Number of recent workspaces

Eclipse 运行导入的 Java 项目时,Error:A JNI error has occurred

出现场景 导入 Java 项目,运行时,出现:Error:A JNI error has occurred.... 解决方式 该项目的 Build Path , 在Libraries 中删除后重新添加,Add Library.. -> JRE System Library -> Execution environment:JavaSE-1.8 .此时可以正常运行了. 原文地址:https://www.cnblogs.com/blueherb/p/10559320.html

springboot启动项目时执行任务,从数据库或者redis获取系统参数

在springboot启动类方法实现org.springframework.boot.CommandLineRunner接口 import org.springframework.boot.CommandLineRunner; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.sprin

MyEclipse下启动项目时JBoss内存溢出问题的解决

配置1:-Xms64m -Xmx512m 配置2:-c default -b 0.0.0.0-Xmx1024M -Xms512M -XX:MaxPermSize=256m