docs: adds notes about importance of serverURL for verify / forgot-pa… (#10248)

Fixes #10235
This commit is contained in:
James Mikrut
2024-12-30 10:20:28 -05:00
committed by GitHub
parent 363a24cea5
commit 6af6e44683
7 changed files with 14 additions and 10 deletions

View File

@@ -13,9 +13,9 @@ import { BannerBlock } from '../../mdx/jsxBlocks/banner.js'
import { CodeBlock } from '../../mdx/jsxBlocks/code/code.js'
import { InlineCodeBlock } from '../../mdx/jsxBlocks/inlineCode.js'
import { PackageInstallOptions } from '../../mdx/jsxBlocks/packageInstallOptions.js'
import { RestExamplesBlock } from '../../mdx/jsxBlocks/restExamples/index.js'
import { TextContainerBlock } from '../../mdx/jsxBlocks/TextContainer.js'
import { TextContainerNoTrimBlock } from '../../mdx/jsxBlocks/TextContainerNoTrim.js'
import { RestExamplesBlock } from '../../mdx/jsxBlocks/restExamples/index.js'
export const postsSlug = 'posts'

View File

@@ -44,4 +44,4 @@
}
},
"frontMatter": []
}
}

View File

@@ -1,5 +1,6 @@
import { tableJson } from '../tableJson.js'
import type { Test } from '../int.spec.js'
import { tableJson } from '../tableJson.js'
import { textToRichText } from '../textToRichText.js'
export const defaultTests: Test[] = [

View File

@@ -1,7 +1,8 @@
import { readFileSync } from 'fs'
import type { Test } from '../int.spec.js'
import { fileURLToPath } from 'url'
import path from 'path'
import { fileURLToPath } from 'url'
import type { Test } from '../int.spec.js'
const filename = fileURLToPath(import.meta.url)
const dirname = path.dirname(filename)

View File

@@ -1,7 +1,8 @@
import { readFileSync } from 'fs'
import type { Test } from '../int.spec.js'
import { fileURLToPath } from 'url'
import path from 'path'
import { fileURLToPath } from 'url'
import type { Test } from '../int.spec.js'
const filename = fileURLToPath(import.meta.url)
const dirname = path.dirname(filename)