From d7009b131c8e2a6959b34fb910971b81f8cd9db4 Mon Sep 17 00:00:00 2001 From: Matteo Bruni <176620+matteobruni@users.noreply.github.com> Date: Mon, 11 May 2026 11:02:59 +0200 Subject: [PATCH 1/2] build: update link to API to prevent 404 error --- websites/website/docs/.vitepress/config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/websites/website/docs/.vitepress/config.ts b/websites/website/docs/.vitepress/config.ts index 72eb95adad9..e39f341f413 100644 --- a/websites/website/docs/.vitepress/config.ts +++ b/websites/website/docs/.vitepress/config.ts @@ -9,7 +9,7 @@ const nav: DefaultTheme.NavItem[] = [ { text: "Demos", link: "/demos/" }, { text: "Wrappers", link: "/guide/wrappers" }, { text: "Options", link: "/options/" }, - { text: "API", link: "/docs/" }, + { text: "API", link: "/docs/", target: "_blank" }, { text: "Sponsor", items: [ From 26a5ea1ffeeeeb06dd57e6ffa2afae1337d2ba27 Mon Sep 17 00:00:00 2001 From: Matteo Bruni <176620+matteobruni@users.noreply.github.com> Date: Mon, 11 May 2026 11:53:50 +0200 Subject: [PATCH 2/2] build: removed useless workflow --- .github/workflows/docs.yml | 32 -------------------------------- 1 file changed, 32 deletions(-) delete mode 100644 .github/workflows/docs.yml diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml deleted file mode 100644 index 64fa910902a..00000000000 --- a/.github/workflows/docs.yml +++ /dev/null @@ -1,32 +0,0 @@ -name: Docs JSON Generation -on: - schedule: - - cron: "0 0 * * *" - push: - branches: - - main - -env: - NX_NO_CLOUD: true - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - -jobs: - - main: - runs-on: ubuntu-latest - if: ${{ github.event_name != 'pull_request' }} - steps: - - uses: actions/checkout@v6 - name: Checkout [main] - with: - fetch-depth: 0 - - uses: pnpm/action-setup@v6 - with: - cache: true - - - uses: actions/setup-node@v6 - with: - node-version: '24' - - - run: pnpm install --no-frozen-lockfile - - run: pnpm run build:ci:json