Skip to content

Commit 4933250

Browse files
committed
feat: Restore basePath for production deployment
- Re-enable basePath: '/design' and assetPrefix: '/design' for GitHub Pages - Build successful with TeamTest component - Ready for production deployment to test fonts
1 parent 8116b18 commit 4933250

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

next.config.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ import type { NextConfig } from "next";
33
const nextConfig: NextConfig = {
44
output: 'export',
55
trailingSlash: true,
6-
// basePath: '/design', // Commented out for development
7-
// assetPrefix: '/design', // Commented out for development
6+
basePath: '/design',
7+
assetPrefix: '/design',
88
images: {
99
unoptimized: true,
1010
},

0 commit comments

Comments
 (0)