Skip to content

Commit 9ad9f9a

Browse files
committed
Added full-stack tags and directories back
1 parent 4851350 commit 9ad9f9a

File tree

4 files changed

+15
-2
lines changed

4 files changed

+15
-2
lines changed

src/content/docs/workers/ci-cd/builds/configuration.mdx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,4 +76,6 @@ It is recommended to consistently use the same API token across all uploads and
7676

7777
## Framework support
7878

79-
[Static assets](/workers/static-assets/) and [frameworks](/workers/framework-guides/) are now supported in Cloudflare Workers. Learn to set up Workers projects and the commands for each framework in [the framework guides](/workers/framework-guides/).
79+
[Static assets](/workers/static-assets/) and [frameworks](/workers/framework-guides/) are now supported in Cloudflare Workers. Learn to set up Workers projects and the commands for each framework in the framework guides:
80+
81+
<DirectoryListing folder="workers/framework-guides" maxDepth={4}/>

src/content/docs/workers/framework-guides/web-apps/redwoodsdk.mdx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ title: RedwoodSDK
44
sidebar:
55
order: 6
66
head: []
7+
tags: ["full-stack"]
78
description: Create an RedwoodSDK application and deploy it to Cloudflare Workers with Workers Assets.
89
---
910

src/content/docs/workers/framework-guides/web-apps/tanstack.mdx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ title: TanStack
44
sidebar:
55
order: 7
66
head: []
7+
tags: ["full-stack"]
78
description: Create a TanStack Router application and deploy it to Cloudflare Workers with Workers Assets.
89
---
910

src/content/docs/workers/static-assets/routing/full-stack-application.mdx

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,13 @@ import { WranglerConfig, Render, DirectoryListing } from "~/components";
1010

1111
Full-stack applications are web applications which are span both the client and server. The build process of these applications will produce a HTML files, accompanying client-side resources (e.g. JavaScript bundles, CSS stylesheets, images, fonts, etc.) and a Worker script. Data is typically fetched the Worker script at request-time and the initial page response is usually server-side rendered (SSR). From there, the client is then hydrated and a SPA-like experience ensues.
1212

13-
Visit our [framework guides](/workers/framework-guides/) to see the full-stack frameworks natively supported by Workers.
13+
The following full-stack frameworks are natively supported by Workers:
14+
15+
<DirectoryListing
16+
folder="workers/framework-guides/web-apps"
17+
tag="full-stack"
18+
/>
19+
<DirectoryListing
20+
folder="workers/framework-guides/web-apps/more-web-frameworks"
21+
tag="full-stack"
22+
/>

0 commit comments

Comments
 (0)