-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: finish passkey guides, liquid extension and linking
- Loading branch information
Showing
27 changed files
with
1,405 additions
and
337 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,8 +7,15 @@ import starlightOpenAPI, { openAPISidebarGroups } from "starlight-openapi"; | |
import react from "@astrojs/react"; | ||
|
||
import mdx from "@astrojs/mdx"; | ||
import basicSsl from '@vitejs/plugin-basic-ssl' | ||
// https://astro.build/config | ||
export default defineConfig({ | ||
vite: { | ||
plugins: [basicSsl()], | ||
server: { | ||
https: true, | ||
}, | ||
}, | ||
site: 'https://liquidauth.com', | ||
markdown: { | ||
rehypePlugins: [rehypeMermaid] | ||
|
@@ -22,6 +29,17 @@ export default defineConfig({ | |
logo: { | ||
src: "./public/logo.svg" | ||
}, | ||
head:[ | ||
{ | ||
tag: 'script', | ||
attrs: { | ||
// Tweaks to the script URL or attributes can be made here. | ||
src: 'https://unpkg.com/[email protected]', | ||
integrity: "sha384-FhXw7b6AlE/jyjlZH5iHa/tTe9EpJ1Y55RjcgPbjeWMskSxZt1v9qkxLJWNJaGni", | ||
crossorigin: "anonymous", | ||
}, | ||
}, | ||
], | ||
editLink: { | ||
baseUrl: 'https://github.com/algorandfoundation/liquid-auth/edit/develop/docs/', | ||
}, | ||
|
Oops, something went wrong.