From 415943654f0d39e4154654c1a3b7c12d843965be Mon Sep 17 00:00:00 2001 From: Daniel <you@example.com> Date: Fri, 13 Sep 2024 21:03:01 +0200 Subject: [PATCH] testing3 --- .gitlab-ci.yml | 1 + next.config.mjs | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 7051ad0..54100be 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -6,6 +6,7 @@ before_script: pages: script: - npm run build + - build/* public/ artifacts: paths: # The folder that contains the files to be exposed at the Page URL diff --git a/next.config.mjs b/next.config.mjs index ee4fab1..4c694e2 100644 --- a/next.config.mjs +++ b/next.config.mjs @@ -1,7 +1,7 @@ /** @type {import('next').NextConfig} */ const nextConfig = { output: 'export', - distDir: 'public', + distDir: './build', } -- GitLab