mirror of
https://github.com/snapotter-hq/SnapOtter.git
synced 2026-08-03 07:46:42 +02:00
refactor: rename Tool.alpha to Tool.experimental
This commit is contained in:
@@ -1,59 +1,55 @@
|
||||
import { defineConfig } from 'vitepress'
|
||||
import { defineConfig } from "vitepress";
|
||||
|
||||
export default defineConfig({
|
||||
title: "Stirling Image",
|
||||
description: "Documentation for Stirling Image, a self-hosted image processing suite.",
|
||||
base: '/Stirling-Image/',
|
||||
srcDir: '.',
|
||||
outDir: './.vitepress/dist',
|
||||
base: "/Stirling-Image/",
|
||||
srcDir: ".",
|
||||
outDir: "./.vitepress/dist",
|
||||
|
||||
head: [
|
||||
['meta', { name: 'theme-color', content: '#3b82f6' }],
|
||||
],
|
||||
head: [["meta", { name: "theme-color", content: "#3b82f6" }]],
|
||||
|
||||
themeConfig: {
|
||||
nav: [
|
||||
{ text: 'Home', link: '/' },
|
||||
{ text: 'Guide', link: '/guide/getting-started' },
|
||||
{ text: 'API Reference', link: '/api/rest' }
|
||||
{ text: "Home", link: "/" },
|
||||
{ text: "Guide", link: "/guide/getting-started" },
|
||||
{ text: "API Reference", link: "/api/rest" },
|
||||
],
|
||||
|
||||
sidebar: [
|
||||
{
|
||||
text: 'Guide',
|
||||
text: "Guide",
|
||||
items: [
|
||||
{ text: 'Getting started', link: '/guide/getting-started' },
|
||||
{ text: 'Architecture', link: '/guide/architecture' },
|
||||
{ text: 'Configuration', link: '/guide/configuration' },
|
||||
{ text: 'Database', link: '/guide/database' },
|
||||
{ text: 'Deployment', link: '/guide/deployment' }
|
||||
]
|
||||
{ text: "Getting started", link: "/guide/getting-started" },
|
||||
{ text: "Architecture", link: "/guide/architecture" },
|
||||
{ text: "Configuration", link: "/guide/configuration" },
|
||||
{ text: "Database", link: "/guide/database" },
|
||||
{ text: "Deployment", link: "/guide/deployment" },
|
||||
],
|
||||
},
|
||||
{
|
||||
text: 'API reference',
|
||||
text: "API reference",
|
||||
items: [
|
||||
{ text: 'REST API', link: '/api/rest' },
|
||||
{ text: 'Image engine', link: '/api/image-engine' },
|
||||
{ text: 'AI engine', link: '/api/ai' }
|
||||
]
|
||||
}
|
||||
{ text: "REST API", link: "/api/rest" },
|
||||
{ text: "Image engine", link: "/api/image-engine" },
|
||||
{ text: "AI engine", link: "/api/ai" },
|
||||
],
|
||||
},
|
||||
],
|
||||
|
||||
socialLinks: [
|
||||
{ icon: 'github', link: 'https://github.com/siddharthksah/Stirling-Image' }
|
||||
],
|
||||
socialLinks: [{ icon: "github", link: "https://github.com/siddharthksah/Stirling-Image" }],
|
||||
|
||||
search: {
|
||||
provider: 'local'
|
||||
provider: "local",
|
||||
},
|
||||
|
||||
footer: {
|
||||
message: 'Released under the MIT License.',
|
||||
message: "Released under the MIT License.",
|
||||
},
|
||||
|
||||
editLink: {
|
||||
pattern: 'https://github.com/siddharthksah/Stirling-Image/edit/main/apps/docs/:path',
|
||||
text: 'Edit this page on GitHub'
|
||||
}
|
||||
}
|
||||
})
|
||||
pattern: "https://github.com/siddharthksah/Stirling-Image/edit/main/apps/docs/:path",
|
||||
text: "Edit this page on GitHub",
|
||||
},
|
||||
},
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user