Some checks failed
Automated Container Build / build-and-push (push) Failing after 7s
8 lines
175 B
TypeScript
8 lines
175 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
output: "standalone",
|
|
serverExternalPackages: ["better-sqlite3"],
|
|
};
|
|
|
|
export default nextConfig;
|