From 12a308107309a4e28cb97f218fbcc9f60aaf5db2 Mon Sep 17 00:00:00 2001 From: ArtemkaDev Date: Mon, 27 May 2024 12:29:23 +0300 Subject: [PATCH] fix deploy --- .github/workflows/build-and-deploy.yml | 1 - next.config.js | 3 ++- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-and-deploy.yml b/.github/workflows/build-and-deploy.yml index 08b6061..c18def3 100644 --- a/.github/workflows/build-and-deploy.yml +++ b/.github/workflows/build-and-deploy.yml @@ -25,7 +25,6 @@ jobs: run: | npm ci npm run build - npm run export touch out/.nojekyll - name: Deploy diff --git a/next.config.js b/next.config.js index bc1f7fb..941ba39 100644 --- a/next.config.js +++ b/next.config.js @@ -7,7 +7,8 @@ const withNextIntl = createNextIntlPlugin(); /** @type {import('next').NextConfig} */ var nextConfig = { - output: 'export', + output: 'export', + reactStrictMode: true, } //module.exports = withNextIntl(nextConfig);