Skip to content

Commit

Permalink
fix dev mode w/ baseUrl
Browse files Browse the repository at this point in the history
  • Loading branch information
ssalbdivad committed Dec 22, 2024
1 parent 2ac3a64 commit 706ce2f
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 28 deletions.
12 changes: 0 additions & 12 deletions ark/attest/tsconfig.build.json

This file was deleted.

4 changes: 3 additions & 1 deletion ark/docs/components/Asterisk.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
export const Asterisk = () => (
<p style={{ fontSize: "1.5rem", display: "inline-block", margin: 0 }}>*</p>
<div style={{ fontSize: "1.5rem", display: "inline-block", margin: 0 }}>
*
</div>
)
5 changes: 4 additions & 1 deletion ark/docs/content/docs/keywords.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,10 @@ import { SyntaxTab, SyntaxTabs } from "../../components/SyntaxTabs.tsx"

### TypeScript

All<Asterisk/> builtin TypeScript keywords are directly available.
<div>
All
<Asterisk /> builtin TypeScript keywords are directly available.
</div>

<SyntaxTabs>
<SyntaxTab string>
Expand Down
2 changes: 1 addition & 1 deletion ark/docs/content/docs/primitives/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { SyntaxTab, SyntaxTabs } from "../../../components/SyntaxTabs.tsx"

## string

### keywords [#string-literals]
### keywords [#string-keywords]

🚧 Coming soon ™️🚧

Expand Down
3 changes: 2 additions & 1 deletion ark/docs/next.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ const config = {
// the following properties are required by nextjs-github-pages:
// https://github.com/gregrickaby/nextjs-github-pages
output: "export",
basePath: "/arktype",
basePath:
process.env.NODE_ENV === "development" ? (undefined as never) : "/arktype",
images: {
unoptimized: true
}
Expand Down
12 changes: 0 additions & 12 deletions ark/fast-check/tsconfig.build.json

This file was deleted.

0 comments on commit 706ce2f

Please sign in to comment.