Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
10 changes: 5 additions & 5 deletions packages/features/src/categories.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,31 +30,31 @@ They showcase their respective recommended usage and how they integrate with Vit
},
{
label: "Auth",
group: categoriesGroups.Data,
group: categoriesGroups.Backend,
description: `Ready to use self-hosted or cloud-based Auth solutions.
Requires to also select a Server of your choosing.`,
},
{
label: "Data fetching",
group: categoriesGroups.Data,
group: categoriesGroups.Backend,
description: `Data fetching libraries to help you interact with your backend.
Selecting one of those usually requires you to also choose a Server.`,
},
{
label: "Server",
group: categoriesGroups.Data,
group: categoriesGroups.Backend,
description: `Mostly required by other integrations such as Auth or RPC,
it's recommended to only install a Server if you really need to, as Vike doesn't require one to operate.`,
},
{
label: "Database",
group: categoriesGroups.Data,
group: categoriesGroups.Backend,
description: `The database your app talks to. SQLite runs embedded (and powers Cloudflare D1);
PostgreSQL targets a Postgres server. Selected on its own you get a thin client; pair it with an ORM or query builder below.`,
},
{
label: "ORM / Query builder",
group: categoriesGroups.Data,
group: categoriesGroups.Backend,
description: `Type-safe data access on top of your database. Requires choosing a Database above.`,
},
{
Expand Down
1 change: 1 addition & 0 deletions packages/features/src/features.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ export const features = [
],
tooltip: "Vike cannot be disabled. It is the foundation that allows all others tools to work cohesively",
invisibleCli: true,
invisibleWeb: true,
readonly: true,
},
// UI Framework
Expand Down
2 changes: 1 addition & 1 deletion packages/features/src/groups.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
export enum categoriesGroups {
Frontend = "Frontend",
Data = "Data",
Backend = "Backend",
Deployment = "Deployment",
Utilities = "Utilities",
}
4 changes: 2 additions & 2 deletions website/components/Presets.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,8 @@ export default function Presets() {
/>
<Preset
title="Nuxt"
features={["vue", "Auth", "Data fetching", "elysia", "Linter"]}
description="Nuxt like app with Data Fetching, Auth and Elysia"
features={["vue", "authjs", "Data fetching", "elysia", "Linter"]}
description="Nuxt like app with Data Fetching, Auth.js and Elysia"
/>
<Preset title="CMS" features={["UI Framework"]} disabled={true} description="" />
</div>
Expand Down
Loading