From f19e794c38d2ba2d7ca79879d9cf4c0f6d086b01 Mon Sep 17 00:00:00 2001 From: Stefano Pigozzi Date: Thu, 28 Nov 2024 00:12:39 +0100 Subject: [PATCH] Prepare for deploy --- holycow_frontend/.gitignore | 1 + holycow_frontend/holycow_frontend.iml | 1 + holycow_frontend/next.config.mjs | 4 +++- 3 files changed, 5 insertions(+), 1 deletion(-) diff --git a/holycow_frontend/.gitignore b/holycow_frontend/.gitignore index e23c656..c42b9c1 100644 --- a/holycow_frontend/.gitignore +++ b/holycow_frontend/.gitignore @@ -2,6 +2,7 @@ # dependencies .npmrc +out /node_modules /.pnp .pnp.* diff --git a/holycow_frontend/holycow_frontend.iml b/holycow_frontend/holycow_frontend.iml index d3d5d8f..96920fa 100644 --- a/holycow_frontend/holycow_frontend.iml +++ b/holycow_frontend/holycow_frontend.iml @@ -5,6 +5,7 @@ + diff --git a/holycow_frontend/next.config.mjs b/holycow_frontend/next.config.mjs index 4205403..6f12dc4 100644 --- a/holycow_frontend/next.config.mjs +++ b/holycow_frontend/next.config.mjs @@ -1,4 +1,6 @@ /** @type {import("next").NextConfig} */ -const nextConfig = {}; +const nextConfig = { + output: "export" +}; export default nextConfig;