hexo generate중에 에러가 발생했다.
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
| FATAL { err: Error: ** Processing: C:\Users\SDPark-pc\AppData\Local\Temp\f657ac55-7bfc-474b-8bd4-783a7a740fb7 1024x1024 pixels, 4x8 bits/pixel, RGB+alpha Input IDAT size = 16536 bytes Input file size = 16593 bytes
Trying: zc = 9 zm = 8 zs = 0 f = 0 IDAT size = 16536 zc = 9 zm = 8 zs = 3 f = 0 0 at C:\Users\SDPark-pc\Desktop\REACT\blog\hexo\node_modules\exec-buffer\node_modules\execa\index.js:231:11 at runMicrotasks (<anonymous>) at processTicksAndRejections (internal/process/task_queues.js:93:5) { code: 3221225477, killed: false, stdout: '', stderr: '** Processing: C:\\Users\\SDPark-pc\\AppData\\Local\\Temp\\f657ac55-7bfc-474b-8bd4-783a7a740fb7\r\n' + '1024x1024 pixels, 4x8 bits/pixel, RGB+alpha\r\n' + 'Input IDAT size = 16536 bytes\r\n' + 'Input file size = 16593 bytes\r\n' + '\r\n' + 'Trying:\r\n' + ' zc = 9 zm = 8 zs = 0 f = 0\t\tIDAT size = 16536\r\n' + ' zc = 9 zm = 8 zs = 1 f = 0\r zc = 1 zm = 8 zs = 2 f = 0\r zc = 9 zm = 8 zs = 3 f = 0', failed: true, signal: null, cmd: 'C:\\Users\\SDPark-pc\\Desktop\\REACT\\blog\\hexo\\node_modules\\hexo-filter-cleanup\\node_modules\\optipng-bin\\vendor\\optipng.exe -strip all -clobber -fix -o 2 -out C:\\Users\\SDPark-pc\\AppData\\Local\\Temp\\044b15b2-8a65-4748-97c3-ad4280ef2c14 C:\\Users\\SDPark-pc\\AppData\\Local\\Temp\\f657ac55-7bfc-474b-8bd4-783a7a740fb7', timedOut: false } } Something's wrong. Maybe you can find the solution here: %s https://hexo.io/docs/troubleshooting.html
|
hfc에서 발생한 에런지 hexo에서 발생한 에러인지 모르지만 해결하였다.
다음과 같이 execa라는 모듈을 재설치 해주었다.
1 2
| npm rm execa npm i execa
|