create-ardo 1.1.2 → 1.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@ dist
|
|
|
3
3
|
.DS_Store
|
|
4
4
|
*.local
|
|
5
5
|
|
|
6
|
-
# Auto-generated by ardo (content routes derived from markdown
|
|
7
|
-
src/routes/
|
|
8
|
-
!src/routes/
|
|
6
|
+
# Auto-generated by ardo (content routes derived from markdown)
|
|
7
|
+
src/routes/guide/*.tsx
|
|
8
|
+
!src/routes/guide/_layout.tsx
|
|
9
9
|
src/routeTree.gen.ts
|
|
@@ -4,11 +4,11 @@ import { PressProvider } from 'ardo/runtime'
|
|
|
4
4
|
import config from 'virtual:ardo/config'
|
|
5
5
|
import sidebar from 'virtual:ardo/sidebar'
|
|
6
6
|
|
|
7
|
-
export const Route = createFileRoute('/
|
|
8
|
-
component:
|
|
7
|
+
export const Route = createFileRoute('/guide/_layout')({
|
|
8
|
+
component: GuideLayoutComponent,
|
|
9
9
|
})
|
|
10
10
|
|
|
11
|
-
function
|
|
11
|
+
function GuideLayoutComponent() {
|
|
12
12
|
return (
|
|
13
13
|
<PressProvider config={config} sidebar={sidebar}>
|
|
14
14
|
<DocLayout>
|