From 55531667884d909f5f2cc64de3787fb440b1f780 Mon Sep 17 00:00:00 2001 From: vchikalkin Date: Tue, 10 Jan 2023 23:36:47 +0300 Subject: [PATCH] [2] fix serve static files --- apps/web/config/meta.jsx | 2 +- apps/web/next.config.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/web/config/meta.jsx b/apps/web/config/meta.jsx index 32297b2..bb5f64f 100644 --- a/apps/web/config/meta.jsx +++ b/apps/web/config/meta.jsx @@ -12,7 +12,7 @@ export const metaFavicon = ( - + diff --git a/apps/web/next.config.js b/apps/web/next.config.js index 3266b0c..308ebeb 100644 --- a/apps/web/next.config.js +++ b/apps/web/next.config.js @@ -16,7 +16,7 @@ const faviconSubPath = env.USE_DEV_COLORS ? '/favicon/dev' : '/favicon/prod'; function buildFaviconRewrite(source) { return { source, - destination: String.prototype.concat(faviconSubPath, source), + destination: String.prototype.concat(env.BASE_PATH, faviconSubPath, source), }; }