Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CHANGELOG has been changed
Browse files Browse the repository at this point in the history
Ruslan Matkovskyi committed Jan 16, 2025

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
1 parent 253e9ea commit 9246064
Showing 4 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -20,6 +20,7 @@ Our versioning strategy is as follows:
* `[templates/nextjs-sxa]` Fixed font-awesome import issue in custom workspace configuration ([#1998](https://github.com/Sitecore/jss/pull/1998))
* `[sitecore-jss-nextjs]` Fixed handling of ? inside square brackets [] in regex patterns to prevent incorrect escaping ([#1999](https://github.com/Sitecore/jss/pull/1999))
* `[sitecore-jss-nextjs]` Improve performance for redirect middleware ([#2003](https://github.com/Sitecore/jss/pull/2003))
* `[templates/nextjs]` `[templates/nextjs-sxa]` Fixed condition of DISABLE_FETCH_SSG ([#2007](https://github.com/Sitecore/jss/pull/2007))

### 🛠 Breaking Change

Original file line number Diff line number Diff line change
@@ -40,7 +40,7 @@ export const getStaticProps: GetStaticProps = async (context) => {
});
let resultErrorPages: ErrorPages | null = null;

if (process.env.DISABLE_SSG_FETCH !== 'true') {
if (process.env.DISABLE_SSG_FETCH?.toLowerCase() !== 'true') {
try {
resultErrorPages = await errorPagesService.fetchErrorPages();
} catch (error) {
Original file line number Diff line number Diff line change
@@ -56,7 +56,7 @@ export const getStaticProps: GetStaticProps = async (context) => {
});
let resultErrorPages: ErrorPages | null = null;

if (process.env.DISABLE_SSG_FETCH !== 'true') {
if (process.env.DISABLE_SSG_FETCH?.toLowerCase() !== 'true') {
try {
resultErrorPages = await errorPagesService.fetchErrorPages();
} catch (error) {
Original file line number Diff line number Diff line change
@@ -62,7 +62,7 @@ export const getStaticPaths: GetStaticPaths = async (context) => {
let paths: StaticPath[] = [];
let fallback: boolean | 'blocking' = 'blocking';

if (process.env.NODE_ENV !== 'development' && process.env.DISABLE_SSG_FETCH !== 'true') {
if (process.env.NODE_ENV !== 'development' && process.env.DISABLE_SSG_FETCH?.toLowerCase() !== 'true') {
try {
// Note: Next.js runs export in production mode
paths = await sitemapFetcher.fetch(context);

0 comments on commit 9246064

Please sign in to comment.