Skip to content

Commit f1a16e8

Browse files
committed
initialize content and assets
1 parent c9bd470 commit f1a16e8

File tree

745 files changed

+28520
-113
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

745 files changed

+28520
-113
lines changed

docs_headless/astro.config.mjs

Lines changed: 83 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -25,36 +25,92 @@ export default defineConfig({
2525
},
2626
],
2727
sidebar: [
28+
{
29+
label: 'Getting Started',
30+
slug: 'getting-started',
31+
},
2832
{
2933
label: 'Guides & Concepts',
30-
items: [
31-
// Each item here is one entry in the navigation menu.
32-
{
33-
label: 'General Concepts',
34-
slug: 'guides/architecture',
35-
},
36-
{
37-
label: 'Data Fetching',
38-
slug: 'guides/datafetchingguide',
39-
},
40-
{
41-
label: 'CRUD pages',
42-
slug: 'guides/crud',
43-
attrs: {
44-
class: 'flex items-center',
45-
},
46-
badge: {
47-
text: '',
48-
variant: 'default',
49-
class: 'ee-badge',
50-
},
51-
},
52-
],
53-
},
54-
{
55-
label: 'Reference',
5634
autogenerate: {
57-
directory: 'reference',
35+
directory: 'guides',
36+
},
37+
},
38+
{
39+
label: 'App Configuration',
40+
autogenerate: {
41+
directory: 'app-configuration',
42+
},
43+
},
44+
{
45+
label: 'Data Fetching',
46+
autogenerate: {
47+
directory: 'data-fetching',
48+
},
49+
},
50+
{
51+
label: 'Security',
52+
autogenerate: {
53+
directory: 'security',
54+
},
55+
},
56+
{
57+
label: 'List Page',
58+
autogenerate: {
59+
directory: 'list',
60+
},
61+
},
62+
{
63+
label: 'Creation & Edition Pages',
64+
autogenerate: {
65+
directory: 'create-edit',
66+
},
67+
},
68+
{
69+
label: 'Show Page',
70+
autogenerate: {
71+
directory: 'show',
72+
},
73+
},
74+
{
75+
label: 'Common',
76+
autogenerate: {
77+
directory: 'common',
78+
},
79+
},
80+
{
81+
label: 'Fields',
82+
autogenerate: {
83+
directory: 'fields',
84+
},
85+
},
86+
{
87+
label: 'Inputs',
88+
autogenerate: {
89+
directory: 'inputs',
90+
},
91+
},
92+
{
93+
label: 'Preferences',
94+
autogenerate: {
95+
directory: 'preferences',
96+
},
97+
},
98+
{
99+
label: 'I18N Provider & Translations',
100+
autogenerate: {
101+
directory: 'i18n',
102+
},
103+
},
104+
{
105+
label: 'Other Hooks & Components',
106+
autogenerate: {
107+
directory: 'other',
108+
},
109+
},
110+
{
111+
label: 'Recipes',
112+
autogenerate: {
113+
directory: 'recipes',
58114
},
59115
},
60116
],
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
title: "Getting Started"
3+
---
4+
5+
To be written

0 commit comments

Comments
 (0)