Skip to content

Commit

Permalink
chore: update fallback path
Browse files Browse the repository at this point in the history
  • Loading branch information
jawahar273 committed Feb 5, 2024
1 parent d59fa25 commit 267569a
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions server/web/next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,11 @@ const nextConfig = {
typedRoutes: true,
},
output: 'export',
assetPrefix: process.env.NEXT_PUBLIC_BASE_PATH || '',
basePath: process.env.NEXT_PUBLIC_BASE_PATH || '',
assetPrefix: process.env.NEXT_PUBLIC_BASE_PATH || '/timex',
basePath: process.env.NEXT_PUBLIC_BASE_PATH || '/timex',
// + assetPrefix = process.env.NEXT_PUBLIC_BASE_PATH || ''
};

console.log(process.env.NEXT_PUBLIC_BASE_PATH)

module.exports = nextConfig;

0 comments on commit 267569a

Please sign in to comment.