From cf052e490cc2b6006e7ee1aa6092fe9c9a6b0f36 Mon Sep 17 00:00:00 2001 From: ASOwnerYT Date: Thu, 17 Apr 2025 14:05:54 +1200 Subject: [PATCH] Docker stuff --- .dockerignore | 7 +++++++ next.config.mjs | 4 +++- 2 files changed, 10 insertions(+), 1 deletion(-) create mode 100644 .dockerignore diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 0000000..c550055 --- /dev/null +++ b/.dockerignore @@ -0,0 +1,7 @@ +Dockerfile +.dockerignore +node_modules +npm-debug.log +README.md +.next +.git diff --git a/next.config.mjs b/next.config.mjs index 4678774..608f1be 100644 --- a/next.config.mjs +++ b/next.config.mjs @@ -1,4 +1,6 @@ /** @type {import('next').NextConfig} */ -const nextConfig = {}; +const nextConfig = { + output: "standalone", +}; export default nextConfig;