Skip to content

Commit 5506a8e

Browse files
authored
Merge branch 'main' into main
2 parents 7c9a02d + 409fd9e commit 5506a8e

35 files changed

+1249
-258
lines changed

components/midori/type-strict.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ new Elysia()
1111
body: t.Object({
1212
username: t.String()
1313
})
14-
})
15-
})
14+
}
15+
)
1616
.listen(3000)
1717
`
1818
</script>

docs/.vitepress/config.ts

Lines changed: 20 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,6 @@ export default defineConfig({
9696
sidebar: [
9797
{
9898
text: 'Getting Started',
99-
collapsed: true,
10099
items: [
101100
{
102101
text: 'Introduction',
@@ -110,7 +109,6 @@ export default defineConfig({
110109
},
111110
{
112111
text: 'Concepts',
113-
collapsed: true,
114112
items: [
115113
{
116114
text: 'Route',
@@ -164,8 +162,11 @@ export default defineConfig({
164162
},
165163
{
166164
text: 'Patterns',
167-
collapsed: true,
168165
items: [
166+
{
167+
text: 'After Handle',
168+
link: '/patterns/after-handle'
169+
},
169170
{
170171
text: 'Method Chaining',
171172
link: '/patterns/method-chaining'
@@ -174,6 +175,14 @@ export default defineConfig({
174175
text: 'File Upload',
175176
link: '/patterns/file-upload'
176177
},
178+
{
179+
text: 'Cookie',
180+
link: '/patterns/cookie'
181+
},
182+
{
183+
text: 'Cookie Signature',
184+
link: '/patterns/cookie-signature'
185+
},
177186
{
178187
text: 'Error Handling',
179188
link: '/patterns/error-handling'
@@ -190,6 +199,10 @@ export default defineConfig({
190199
text: 'Dependency Injection',
191200
link: '/patterns/dependency-injection'
192201
},
202+
{
203+
text: 'Remapping',
204+
link: '/patterns/remapping'
205+
},
193206
{
194207
text: 'Lazy Loading Module',
195208
link: '/patterns/lazy-loading-module'
@@ -206,6 +219,10 @@ export default defineConfig({
206219
text: 'Body Parser',
207220
link: '/patterns/body-parser'
208221
},
222+
{
223+
text: 'Trace',
224+
link: '/patterns/trace'
225+
},
209226
{
210227
text: 'Mount',
211228
link: '/patterns/mount'
@@ -218,7 +235,6 @@ export default defineConfig({
218235
},
219236
{
220237
text: 'Plugins',
221-
collapsed: true,
222238
items: [
223239
{
224240
text: 'Eden',
@@ -296,7 +312,6 @@ export default defineConfig({
296312
},
297313
{
298314
text: 'Integration',
299-
collapsed: true,
300315
items: [
301316
{
302317
text: 'Docker',

docs/blog.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,11 @@ head:
2424

2525
<Blogs
2626
:blogs="[
27+
{
28+
title: 'Introducing Elysia 0.7 - Stellar Stellar',
29+
href: '/blog/elysia-07',
30+
detail: 'Introducing up to 13x faster type inference. Declarative telemetry with trace. Reactive cookie model, and cookie validation. TypeBox 0.31 and custom decoder support. Rewritten Web Socket. Definitions remapping and custom affix. Leading more solid foundation for Elysia for a brighter future.'
31+
},
2732
{
2833
title: 'Introducing Elysia 0.6 - This Game',
2934
href: '/blog/elysia-06',

0 commit comments

Comments
 (0)