Skip to content

Commit c5c2007

Browse files
committed
fix: redirects 규칙 변경
1 parent 6023f74 commit c5c2007

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

next.config.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,11 @@ const nextConfig = {
2323
],
2424
},
2525
},
26-
async redirects() {
26+
async rewrites() {
2727
return [
2828
{
2929
source: "/:path*",
30-
destination: "/",
31-
permanent: true,
30+
destination: "/:path*",
3231
},
3332
];
3433
},

0 commit comments

Comments
 (0)