Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Modify to use cloudflareDevProxy and load contents of wrangler.toml #6

Merged
merged 4 commits into from
Jan 15, 2025
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
2 changes: 1 addition & 1 deletion cloudflare/app/routes/home.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export function meta({}: Route.MetaArgs) {
}

export function loader({ context }: Route.LoaderArgs) {
return { message: context.VALUE_FROM_CLOUDFLARE };
return { message: context.cloudflare.env.VALUE_FROM_CLOUDFLARE };
}

export default function Home({ loaderData }: Route.ComponentProps) {
Expand Down
1 change: 0 additions & 1 deletion cloudflare/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20241112.0",
"@hiogawa/vite-node-miniflare": "0.1.1",
"@react-router/dev": "*",
"@types/node": "^20",
"@types/react": "^19.0.1",
Expand Down
3 changes: 2 additions & 1 deletion cloudflare/tsconfig.cloudflare.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@
"app/**/*",
"app/**/.server/**/*",
"app/**/.client/**/*",
"workers/**/*"
"workers/**/*",
"worker-configuration.d.ts"
],
"compilerOptions": {
"composite": true,
Expand Down
27 changes: 4 additions & 23 deletions cloudflare/vite.config.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { vitePluginViteNodeMiniflare } from "@hiogawa/vite-node-miniflare";
import { reactRouter } from "@react-router/dev/vite";
import { cloudflareDevProxy } from "@react-router/dev/vite/cloudflare";
import autoprefixer from "autoprefixer";
import tailwindcss from "tailwindcss";
import { defineConfig } from "vite";
Expand All @@ -18,29 +18,10 @@ export default defineConfig(({ isSsrBuild }) => ({
plugins: [tailwindcss, autoprefixer],
},
},
ssr: {
target: "webworker",
noExternal: true,
resolve: {
conditions: ["workerd", "browser"],
},
optimizeDeps: {
include: [
"react",
"react/jsx-runtime",
"react/jsx-dev-runtime",
"react-dom",
"react-dom/server",
"react-router",
],
},
},
plugins: [
vitePluginViteNodeMiniflare({
entry: "./workers/app.ts",
miniflareOptions: (options) => {
options.compatibilityDate = "2024-11-18";
options.compatibilityFlags = ["nodejs_compat"];
cloudflareDevProxy({
getLoadContext({ context }) {
return { cloudflare: context.cloudflare };
},
}),
reactRouter(),
Expand Down
5 changes: 5 additions & 0 deletions cloudflare/worker-configuration.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
// Generated by Wrangler by running `wrangler types`

interface Env {
VALUE_FROM_CLOUDFLARE: "Hello from Cloudflare";
}
12 changes: 8 additions & 4 deletions cloudflare/workers/app.ts
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
import { createRequestHandler } from "react-router";

declare global {
interface CloudflareEnvironment {}
interface CloudflareEnvironment extends Env {}
}

declare module "react-router" {
export interface AppLoadContext {
VALUE_FROM_CLOUDFLARE: string;
cloudflare: {
env: CloudflareEnvironment;
ctx: ExecutionContext;
};
}
}

Expand All @@ -17,9 +20,10 @@ const requestHandler = createRequestHandler(
);

export default {
fetch(request, env) {
fetch(request, env, ctx) {
console.log("yo");
return requestHandler(request, {
VALUE_FROM_CLOUDFLARE: "Hello from Cloudflare",
cloudflare: { env, ctx },
});
},
} satisfies ExportedHandler<CloudflareEnvironment>;
5 changes: 4 additions & 1 deletion cloudflare/wrangler.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
workers_dev = true
name = "my-worker"
name = "my-react-router-worker"
compatibility_date = "2024-11-18"
main = "./build/server/index.js"
assets = { directory = "./build/client/" }

[vars]
VALUE_FROM_CLOUDFLARE = "Hello from Cloudflare"
3 changes: 0 additions & 3 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading