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), }; }