Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
9 changes: 5 additions & 4 deletions docusaurus.config.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
// 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',
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.
Expand Down