From d5114a80f30c4a7975e9f6f3215b91ed02aab5b2 Mon Sep 17 00:00:00 2001 From: Przemek Grondek Date: Wed, 13 Sep 2023 23:59:43 +0200 Subject: [PATCH] WIP CI Enable static export --- .woodpecker.yml | 2 +- next.config.js | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.woodpecker.yml b/.woodpecker.yml index f9f8d33..5aeb55e 100644 --- a/.woodpecker.yml +++ b/.woodpecker.yml @@ -1,5 +1,5 @@ pipeline: build: - image: "node:18" + image: "node:20" commands: - npm run build \ No newline at end of file diff --git a/next.config.js b/next.config.js index a843cbe..42c10fd 100644 --- a/next.config.js +++ b/next.config.js @@ -1,5 +1,6 @@ /** @type {import('next').NextConfig} */ const nextConfig = { + output: 'export', reactStrictMode: true, }