我在 Lambda cloudwatch 日志中收到以下错误
ERROR [Error: ENOENT: no such file or directory, mkdir '/var/task/node_modules/@types/nexus-typegen'] {
errno: -2,
code: 'ENOENT',
syscall: 'mkdir',
path: '/var/task/node_modules/@types/nexus-typegen'
}
我尝试修改 webpack 以强制捆绑目录,例如:
new CopyWebpackPlugin({
patterns: [
{from: "./node_modules/@types/nexus-typegen"}
]
})
我还将我的 prisma makeSchema 修改为 GenerateArtifacts: false
MakeSchema({
types: typeDefs,
plugins: [
nexusPrisma({ experimentalCRUD: true, shouldGenerateArtifacts: false }),
]
但是到目前为止没有任何效果......有人有解决方法吗?