Skip to content

Commit

Permalink
[templates/nextjs] [templates/nextjs-sxa]: The condition DISBLE_SSG_…
Browse files Browse the repository at this point in the history
…FETCH has been fixed #SXA-7753 (#2007)

* [templates/nextjs, templates/nextjs-sxa]: The condition DISBLE_SSG_FETCH has been fixed

* CHANGELOG has been changed

---------

Co-authored-by: Ruslan Matkovskyi <[email protected]>
  • Loading branch information
sc-ruslanmatkovskyi and Ruslan Matkovskyi authored Jan 17, 2025
1 parent 9b7de9b commit dee0924
Show file tree
Hide file tree
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
Expand Up @@ -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

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

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

if (!process.env.DISABLE_SSG_FETCH) {
if (process.env.DISABLE_SSG_FETCH?.toLowerCase() !== 'true') {
try {
resultErrorPages = await errorPagesService.fetchErrorPages();
} catch (error) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
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);
Expand Down

0 comments on commit dee0924

Please sign in to comment.