115f522056
- next.config.ts 添加 serverExternalPackages 防止裁剪 - Dockerfile 显式复制 @libsql node_modules 到 runner 镜像
9 lines
175 B
TypeScript
9 lines
175 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
output: "standalone",
|
|
serverExternalPackages: ["@libsql/client"],
|
|
};
|
|
|
|
export default nextConfig;
|