From 141e6af44ec31e4dae879fa59f80e9c00375996d Mon Sep 17 00:00:00 2001 From: vchikalkin Date: Mon, 20 Nov 2023 12:40:31 +0300 Subject: [PATCH] apps/web: add build params to next.config.js --- apps/web/next.config.js | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/apps/web/next.config.js b/apps/web/next.config.js index 25dd65c..2730704 100644 --- a/apps/web/next.config.js +++ b/apps/web/next.config.js @@ -15,6 +15,13 @@ function buildFaviconRewrite(source) { /** @type {import('next').NextConfig} */ const nextConfig = { + output: 'standalone', + eslint: { + ignoreDuringBuilds: true, + }, + experimental: { + outputFileTracingRoot: path.join(__dirname, '../../'), + }, reactStrictMode: true, transpilePackages: ['ui'], async rewrites() {