提问人:Nikhil 提问时间:7/30/2023 更新时间:7/30/2023 访问量:167
为什么我在编写 npm run dev 时遇到语法错误
Why I am having a syntax error while writing npm run dev
问:
所以我正在使用 next js 进行一个在线国际象棋项目。一切都很顺利,直到弹出这个未知错误
E:\Allprojects\NEXTAPPS\chess_online\node_modules\watchpack\lib\watchpack.js:1
$→��m��mo�L�D��;�%g�?w��ŷ↓�▬��ovH0��a�5��*�ؒ��l͛�S�iy☺�r�O7��
��%L]��%��∟�hk
^
SyntaxError: Invalid or unexpected token
at internalCompileFunction (node:internal/vm:73:18)
at wrapSafe (node:internal/modules/cjs/loader:1178:20)
at Module._compile (node:internal/modules/cjs/loader:1220:27)
at Module._extensions..js (node:internal/modules/cjs/loader:1310:10)
at Module.load (node:internal/modules/cjs/loader:1119:32) at Module._load (node:internal/modules/cjs/loader:960:12) at Module.require (node:internal/modules/cjs/loader:1143:19)
at require (node:internal/modules/cjs/helpers:110:18)
at Object.<anonymous> (E:\Allprojects\NEXTAPPS\chess_online\node_modules\next\dist\cli\next-dev.js:28:59)
at Module._compile (node:internal/modules/cjs/loader:1256:14)
Node.js v18.16.1
这是我的package.json文件
{
"name": "chess_online",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"next": "13.4.9",
"react": "18.2.0",
"react-dom": "18.2.0"
},
"devDependencies": {
"eslint": "8.44.0",
"eslint-config-next": "13.4.9"
}
}
我不知道这个错误是关于什么的。我尝试回到我的旧 git 版本,但仍然没有 完成工作。我希望有人能解决这个问题。
答: 暂无答案
评论
watchpack.js