Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: segregate api docs url/deployment #3602

Merged
merged 32 commits into from
Feb 8, 2025
Merged
Changes from 1 commit
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
44ea54c
replace links with magic string `DOCS_API_URL`
nedsalk Jan 14, 2025
a9a3aff
Merge remote-tracking branch 'origin/master' into ns/fix/api-docs-dep…
nedsalk Jan 17, 2025
c074168
made vitepress docs work
nedsalk Jan 17, 2025
a30fa14
working link checker local
nedsalk Jan 17, 2025
bb6e88a
remove dependency on env vars
nedsalk Jan 19, 2025
7685e59
wip vercel deployment
nedsalk Jan 19, 2025
956af78
Merge remote-tracking branch 'origin/master' into ns/fix/api-docs-dep…
nedsalk Jan 19, 2025
08721e4
Merge remote-tracking branch 'origin/master' into ns/fix/api-docs-dep…
nedsalk Jan 21, 2025
9e1fa81
bad merge
nedsalk Jan 21, 2025
c5c07ec
empty changeset
nedsalk Jan 21, 2025
38c1ac8
Merge remote-tracking branch 'origin/master' into ns/fix/api-docs-dep…
nedsalk Jan 21, 2025
64f54be
add PR name to changeset
nedsalk Jan 21, 2025
2584b8f
fix
nedsalk Jan 21, 2025
132787d
use NODE_ENV
nedsalk Jan 21, 2025
cf5b022
improve comments
nedsalk Jan 21, 2025
be155b0
fix lint
nedsalk Jan 21, 2025
179c9d0
Merge remote-tracking branch 'origin/master' into ns/fix/api-docs-dep…
nedsalk Jan 27, 2025
1727c48
Merge remote-tracking branch 'origin/master' into ns/fix/api-docs-dep…
nedsalk Jan 29, 2025
62bffbb
Use replacement pattern instead of file change
nedsalk Jan 29, 2025
4faaafb
use replacement pattern instead of ignoring
nedsalk Jan 29, 2025
ff53c1d
fix linting not exiting
nedsalk Jan 29, 2025
d4caa60
Merge remote-tracking branch 'origin/master' into ns/fix/api-docs-dep…
nedsalk Jan 29, 2025
0257508
Always run nightly workflow
nedsalk Jan 29, 2025
3cf855f
Merge remote-tracking branch 'origin/master' into ns/fix/api-docs-dep…
nedsalk Jan 29, 2025
a83cca8
reordering
nedsalk Jan 29, 2025
94df66d
add comment
nedsalk Jan 29, 2025
d840435
rename rule
nedsalk Jan 29, 2025
1924647
rename secret env variable name
nedsalk Jan 29, 2025
ddd826a
Merge remote-tracking branch 'origin/master' into ns/fix/api-docs-dep…
nedsalk Jan 30, 2025
01cbeda
Merge remote-tracking branch 'origin/master' into ns/fix/api-docs-dep…
nedsalk Feb 7, 2025
9f08324
remove todo
nedsalk Feb 7, 2025
cc7abe5
Merge branch 'master' into ns/fix/api-docs-deployment
nedsalk Feb 7, 2025
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
Prev Previous commit
Next Next commit
improve comments
nedsalk committed Jan 21, 2025
commit cf5b022b42523e7641b8e9aafdfddcdb397498f6
5 changes: 3 additions & 2 deletions apps/docs/.vitepress/config.ts
Original file line number Diff line number Diff line change
@@ -25,8 +25,9 @@ export default defineConfig({
// because opening in the same tab doesn't work in the preview
return code.replace(/(<a\s+[^>]*href="\/api\/[^"]*")/g, '$1 target="_blank" rel="noreferrer"');
},
// finds dead DOCS_API_URL links
// which get replaced later in the markdown transformer
// Finds dead DOCS_API_URL links and fails,
// but they get replaced later in the markdown transformer.
// We have the md link checker workflow which covers this.
ignoreDeadLinks: true,
head: [
['link', { rel: 'icon', href: '/fuels-ts/favicon.ico', type: 'image/png' }],

Unchanged files with check annotations Beta

Check warning on line 2 in scripts/lint-md-links.ts

GitHub Actions / Lint

'exec' is defined but never used

Check warning on line 5 in scripts/lint-md-links.ts

GitHub Actions / Lint

'cwd' is defined but never used