Next.js 与 pkg。语法需要启用以下解析器插件之一:'flow, typescript'
Next.js with pkg. Syntax requires enabling one of the following parser plugin(s): 'flow, typescript'
我将 next.js 与 pkg in my project based on this tutorial 一起使用,但是当我使用 运行 pkg 命令时出现错误:
> Error! This experimental syntax requires enabling
one of the following parser plugin(s): 'flow, typescript' (13:7)
/app/node_modules/ast-types-flow/lib/types.js
Pkg 命令:
pkg . -t node13-linux-x64 -o build
包版本:4.4.8
我尝试添加选项但仍然无效:
"pkg": {
"assets": [".next/**/*"],
"scripts": [".next/dist/**/*.js"],
"options": ["experimental-modules"]
}
如何解决这个问题?
我删除了不必要的包,问题消失了 =| (反应脚本,故事书)。也不需要 options
我将 next.js 与 pkg in my project based on this tutorial 一起使用,但是当我使用 运行 pkg 命令时出现错误:
> Error! This experimental syntax requires enabling
one of the following parser plugin(s): 'flow, typescript' (13:7)
/app/node_modules/ast-types-flow/lib/types.js
Pkg 命令:
pkg . -t node13-linux-x64 -o build
包版本:4.4.8
我尝试添加选项但仍然无效:
"pkg": {
"assets": [".next/**/*"],
"scripts": [".next/dist/**/*.js"],
"options": ["experimental-modules"]
}
如何解决这个问题?
我删除了不必要的包,问题消失了 =| (反应脚本,故事书)。也不需要 options