当我尝试在react中启动我的项目时,我得到了这个错误,我正在使用Ubuntu系统
Found bindings for the following environments: - Linux 64-bit with Node.js 9.x 我用的是node -v : 10.13.0和npm -v : 6.11.2,这里还附上了我的package.json文件,有没有人能帮我解决这个问题?
{
"name": "gatsby-starter-hello-world",
"private": true,
"description": "A simplified bare-bones starter for Gatsby",
"version": "0.1.0",
"license": "0BSD",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\"",
"start": "npm run develop",
"serve": "gatsby serve",
"clean": "gatsby clean",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 1"
},
"dependencies": {
"classnames": "^2.2.6",
"gatsby": "^2.24.48",
"gatsby-background-image": "^1.1.2",
"gatsby-plugin-routes": "^1.0.0",
"gatsby-plugin-sass": "^2.3.12",
"gatsby-plugin-sharp": "^2.6.28",
"gatsby-source-filesystem": "^2.3.25",
"gatsby-transformer-sharp": "^2.5.13",
"node-sass": "^4.14.1",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-router-dom": "^5.0.1"
},
"devDependencies": {
"prettier": "2.0.5"
},
"repository": {
"type": "git",
"url": "https://github.com/gatsbyjs/gatsby-starter-hello-world"
},
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
}
}发布于 2020-08-26 16:05:48
你只需要使用:
npm rebuild node-sass我建议在项目的根目录中添加一个.nvmrc文件,以避免此错误的发生。这是一个简单的文件,用于修复您的项目的Node版本,以避免版本之间的不匹配,并强制项目在特定版本下运行。您只需要添加一个包含以下内容的.nvmrc文件:
v10.13.0发布于 2020-08-26 05:22:11
尝试删除您的node_modules并重新安装。您可能还希望检查路径中是否有链接NVM或旧Node9版本的内容,即在安装时node-sass正在拾取的内容
https://stackoverflow.com/questions/63579396
复制相似问题