From 45b2e20c364a270dee252af36c8f5eaea339fd47 Mon Sep 17 00:00:00 2001 From: mihna123 Date: Sun, 24 May 2026 22:17:34 +0200 Subject: feat: make build standalone --- next.config.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/next.config.ts b/next.config.ts index 5dd3660..9808cea 100644 --- a/next.config.ts +++ b/next.config.ts @@ -1,8 +1,9 @@ -import type { NextConfig } from "next"; +import type { NextConfig } from 'next'; const nextConfig: NextConfig = { /* config options here */ - serverExternalPackages: ["pdfkit"], + serverExternalPackages: ['pdfkit'], + output: 'standalone', }; export default nextConfig; -- cgit v1.3.1