c5505868e1
Prisma 6 内置 SQLite 引擎,无需 adapter、无需编译工具链, 与 no-whatever 项目保持一致的技术方案。
8 lines
129 B
TypeScript
8 lines
129 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
output: "standalone",
|
|
};
|
|
|
|
export default nextConfig;
|