You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -451,7 +464,7 @@ async function scaffoldNext(projectName) {
451
464
],
452
465
},
453
466
];
454
-
}
467
+
},
455
468
};`
456
469
);
457
470
@@ -549,7 +562,7 @@ async function scaffoldNext(projectName) {
549
562
);
550
563
551
564
letnewNextConfig=nextConfig.replace(
552
-
' }\n};',
565
+
' },\n};',
553
566
` },
554
567
images: {
555
568
unoptimized: true,
@@ -560,7 +573,7 @@ async function scaffoldNext(projectName) {
560
573
* when deployed to GitHub Pages. The assetPrefix needs to be added manually to any assets
561
574
* if they're not loaded by Next.js' automatic handling (for example, in CSS files or in a <img> element).
562
575
* The 'ghp-postbuild.js' script in this project prepends the repo name to asset urls in the built css files
563
-
* after runing 'npm run deploy'.
576
+
* after running 'npm run deploy'.
564
577
*/
565
578
basePath: process.env.NODE_ENV === 'production' ? '/${projectName}' : '', // update if your repo name changes for 'npm run deploy' to work correctly
566
579
assetPrefix: process.env.NODE_ENV === 'production' ? '/${projectName}/' : '', // update if your repo name changes for 'npm run deploy' to work correctly
@@ -573,7 +586,7 @@ async function scaffoldNext(projectName) {
0 commit comments