20230109-Node Sass Trouble Shooting 參考解法
問題訊息
1 | Node Sass does not yet support your current environment: Windows 64-bit with Unsupported runtime |
參考解法-重要連結
修改以下檔案
D:\Blog\GitIoSrc\package.json
1 | "hexo-renderer-sass": "github:cocowool/hexo-renderer-sass", |
- 完整檔案內容
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34{
"name": "hexo-site",
"version": "0.0.0",
"private": true,
"scripts": {
"build": "hexo generate",
"clean": "hexo clean",
"deploy": "hexo deploy",
"server": "hexo server"
},
"hexo": {
"version": "5.4.2"
},
"dependencies": {
"cheerio": "^1.0.0-rc.3",
"hexo": "^5.0.0",
"hexo-asset-link": "^2.1.0",
"hexo-deployer-git": "^3.0.0",
"hexo-generator-archive": "^1.0.0",
"hexo-generator-category": "^1.0.0",
"hexo-generator-index": "^2.0.0",
"hexo-generator-searchdb": "^1.3.2",
"hexo-generator-tag": "^1.0.0",
"hexo-hide-posts": "^0.1.1",
"hexo-math": "^4.0.0",
"hexo-renderer-ejs": "^1.0.0",
"hexo-renderer-marked": "^3.0.0",
"hexo-renderer-sass": "github:cocowool/hexo-renderer-sass",
"hexo-renderer-stylus": "^2.0.0",
"hexo-server": "^2.0.0",
"lodash": "^4.17.20",
"node-sass": "^8.0.0"
}
}