From 12cc256601c519061f1129d2e97935c0bee4bd85 Mon Sep 17 00:00:00 2001 From: mbaj Date: Fri, 7 Aug 2026 12:47:46 -0400 Subject: [PATCH 1/3] Adding comment for clarity --- docusaurus.config.js | 1 + 1 file changed, 1 insertion(+) diff --git a/docusaurus.config.js b/docusaurus.config.js index fe59b2eeb63..558e4d021e2 100644 --- a/docusaurus.config.js +++ b/docusaurus.config.js @@ -1,3 +1,4 @@ +// url and baseUrl need to be set differently between master and the juniper-docs-migration branch const config = { title: 'SSN Docs', tagline: 'The documentation source for the Session Smart Networking Platform', From e0da412ecba40c8b403447467ea89a293cf42d9f Mon Sep 17 00:00:00 2001 From: mbaj Date: Fri, 14 Aug 2026 13:10:01 -0400 Subject: [PATCH 2/3] Correct URLs for the juniper.net site --- docusaurus.config.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docusaurus.config.js b/docusaurus.config.js index c7bfeba98d8..558e4d021e2 100644 --- a/docusaurus.config.js +++ b/docusaurus.config.js @@ -2,10 +2,10 @@ const config = { title: 'SSN Docs', tagline: 'The documentation source for the Session Smart Networking Platform', - url: 'https://docs.128technology.com', - //url: 'https://uat.juniper.net', - baseUrl: process.env.OFFLINE_DOCS ? '/offline-docs/' : '/', - //baseUrl: '/documentation/us/en/software/session-smart-router/', + //url: 'https://docs.128technology.com', + url: 'https://uat.juniper.net', + //baseUrl: process.env.OFFLINE_DOCS ? '/offline-docs/' : '/', + baseUrl: '/documentation/us/en/software/session-smart-router/', favicon: 'img/favicon.ico', organizationName: '128technology', // Usually your GitHub org/user name. projectName: 'docs', // Usually your repo name. From ffcc7ef9f6b7b396fd8811ad0328a23329431bab Mon Sep 17 00:00:00 2001 From: mbaj Date: Fri, 14 Aug 2026 13:27:10 -0400 Subject: [PATCH 3/3] Correcting environment variables for juniper.net --- .github/workflows/main.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 190c8f1b1db..3fbe32ef636 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -39,18 +39,18 @@ jobs: - name: Build env: NODE_OPTIONS: "--max-old-space-size=4096" - BUILD_OUT_DIR: build + BUILD_OUT_DIR: build/documentation/us/en/software/session-smart-router run: npm run build - name: Build Offline Bundle env: NODE_OPTIONS: "--max-old-space-size=4096" - BUILD_OUT_DIR: build + BUILD_OUT_DIR: build/documentation/us/en/software/session-smart-router run: npm run build:offline - name: Check Links env: - LINKINATOR_PATH: "**/*.html" + LINKINATOR_PATH: "documentation/us/en/software/session-smart-router/**/*.html" run: npm run check-links - name: Deploy