Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
04cf6dc
fix: add sample app ai sdk
saif-at-scalekit Jan 9, 2026
58ab6f9
feat: add interactive sandbox components and update configuration
saif-at-scalekit Jan 12, 2026
0d0bafb
refactor: enhance sandbox page structure and styles
saif-at-scalekit Jan 12, 2026
8c3fc52
Merge branch 'main' into code-examples-pages
saif-at-scalekit Jan 14, 2026
b2822b7
chore: update astro-og-canvas dependency to version 0.10.0 in package…
saif-at-scalekit Jan 14, 2026
386a101
feat: enhance Sandbox components with optional environment and sandbo…
saif-at-scalekit Jan 14, 2026
7f532c5
chore: update @sampleapp.ai/sdk dependency to version 1.0.35
saif-at-scalekit Jan 14, 2026
cfede76
fix: downgrade astro-og-canvas to 0.9.0 to fix build errors
saif-at-scalekit Jan 14, 2026
9b6aa0a
feat: enhance Developer Resources section and improve Sandbox layout
saif-at-scalekit Jan 14, 2026
8ba332c
refactor: simplify Sandbox components by integrating useSampleAppSDK …
saif-at-scalekit Jan 14, 2026
498d481
chore: update @sampleapp.ai/sdk dependency to version 1.0.36
saif-at-scalekit Jan 14, 2026
437b3cf
feat: add env url
saif-at-scalekit Jan 15, 2026
7d22ecb
Merge branch 'main' into code-examples-pages
saif-at-scalekit Jan 15, 2026
5d4f90b
Update @sampleapp.ai/sdk version to 1.0.37 (#391)
seanflyyy Jan 20, 2026
8c02f1d
feat: update the sampleapp v
saif-at-scalekit Jan 20, 2026
80da82c
chore: update @sampleapp.ai/sdk dependency to version 1.0.40
saif-at-scalekit Jan 22, 2026
6eb80a7
bump up to .41
saif-at-scalekit Jan 22, 2026
fa1f778
chore: update @sampleapp.ai/sdk dependency to version 1.0.47
saif-at-scalekit Feb 4, 2026
b77507f
feat: add quickstart guide for OAuth 2.1 authorization in MCP servers
saif-at-scalekit Feb 4, 2026
bccaca8
fix: add theme prop to SandboxHome component in SandboxHomeWrapper
saif-at-scalekit Feb 9, 2026
d218c61
feat: add MCP Quickstart v2 page and update sidebar
saif-at-scalekit Feb 9, 2026
a4faa54
feat: add SandboxEmbed component for interactive code samples
saif-at-scalekit Feb 9, 2026
34ff99d
Merge branch 'main' into code-examples-pages
saif-at-scalekit Feb 9, 2026
db9d614
feat: enable raw content processing in llms configuration
saif-at-scalekit Feb 9, 2026
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
18 changes: 14 additions & 4 deletions astro.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,10 @@ export default defineConfig({
site: 'https://docs.scalekit.com',
redirects,
integrations: [
react({
include: ['**/*.tsx', '**/*.jsx'],
experimentalReactChildren: true,
}),
starlight({
title: 'Scalekit Docs',
routeMiddleware: './src/routeData.ts',
Expand Down Expand Up @@ -206,9 +210,9 @@ export default defineConfig({
},
],
}),
react(),
vue({
jsx: true,
include: ['**/*.vue'],
jsx: false,
template: {
compilerOptions: {
isCustomElement: (tag) => tag.includes('-'),
Expand Down Expand Up @@ -237,11 +241,16 @@ export default defineConfig({
alias: {
'@': path.resolve('./src'),
'@components': path.resolve('./src/components'),
'@styles': path.resolve('./src/styles'),
},
dedupe: ['react', 'react-dom'],
conditions: ['import', 'module', 'browser', 'default'],
},
optimizeDeps: {
include: ['vue'],
exclude: [],
include: ['vue', 'react', 'react-dom', '@sampleapp.ai/sdk'],
esbuildOptions: {
jsx: 'automatic',
},
},
// Provide a safe fallback for libraries that reference the CommonJS
// global `__dirname` (e.g. canvaskit-wasm used by astro-og-canvas).
Expand All @@ -258,6 +267,7 @@ export default defineConfig({
output: {
manualChunks(id) {
if (id.includes('@scalar')) return 'scalar'
if (id.includes('react') || id.includes('react-dom')) return 'react-vendor'
},
},
},
Expand Down
66 changes: 66 additions & 0 deletions deno.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 5 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,17 +31,18 @@
"@fontsource-variable/inter": "^5.2.8",
"@fontsource/jetbrains-mono": "^5.2.8",
"@hideoo/starlight-plugins-docs-components": "^0.4.1",
"@iconify/json": "^2.2.432",
"@scalar/api-reference": "^1.43.17",
"@scalar/astro": "^0.1.13",
"@iconify/json": "^2.2.425",
"@sampleapp.ai/sdk": "^1.0.47",
"@scalar/api-reference": "^1.40.9",
"@scalar/astro": "^0.1.6",
"@tailwindcss/vite": "^4.1.18",
"@types/react": "^19.2.10",
"@types/react-dom": "^19.2.3",
"accessible-astro-components": "^5.1.2",
"astro": "^5.16.15",
"astro-d2": "^0.8.1",
"astro-loader-github-releases": "^2.1.1",
"astro-og-canvas": "^0.10.0",
"astro-og-canvas": "^0.9.0",
"canvaskit-wasm": "0.39.1",
"pnpm": "^10.28.2",
"react": "^19.2.4",
Expand Down
Loading