veeque
Explore posts from serversCDCloudflare Developers
•Created by veeque on 3/31/2025 in #workers-help
Environments best practices
With workers I can have a "default" environment (placing things in the root of the
wrangler.jsonc
, and n environments such as development
. What's better: having the "default" be the production one with the development one being specified as a separate env (requiring me to add -e development
when using that), or having the "default" one be the development, with the prod being its own env?3 replies
CDCloudflare Developers
•Created by veeque on 3/28/2025 in #workers-help
Preview deployments non a thing with Assets?
With Pages I could just push to another branch and that got its own
.pages.dev
URL. Doing the same with Workers Assets doesn't give me such URL, so... how can I get a preview deployment?—say that of the dev
branch8 replies
CDCloudflare Developers
•Created by veeque on 3/27/2025 in #workers-help
Build rust workers
Using the git integration it complains that cargo is not found. Is this a limitation of the git integration?
3 replies
CDCloudflare Developers
•Created by veeque on 3/26/2025 in #workers-help
Cannot deploy Worker Assets

18 replies
CDCloudflare Developers
•Created by veeque on 3/25/2025 in #pages-help
In SvelteKit do I have to use `wrangler dev` instead of `vite dev` to make service bindings work?
I have two SvelteKit projects, both running on Pages. Project B has a service binding to Project A but it only works if Project A is running the
preview
script (which contains wrangler dev
), and not when using the dev
script (vite dev
). Is this a "hard" limit or is there a way to make service bindings work with the "normal" dev mode?4 replies
CDCloudflare Developers
•Created by veeque on 3/20/2025 in #pages-help
Image transform with SvelteKit
So, I put the images in the
assets
folder, but how do I use cloudflare's image transformation now?
Say i have pic.jpg
in assets/pic.jpg
, visible on https://my-page.pages.dev/pic.jpg
. doing https://my-page.pages.dev/cdn-cgi/image/width=80,quality=75/pic.jpg
doesn't return anything... how is this supposed to work?1 replies
CDCloudflare Developers
•Created by veeque on 3/20/2025 in #pages-help
Is there a build time limit?
i got this after 3 mins (builds locally)
14 replies
CDCloudflare Developers
•Created by veeque on 2/3/2025 in #general-help
How do image transformations work? (SvelteKit + unpic)
I have a SvelteKit app, and place the images inside the
assets
folder. Then, using unpic, it should (but doesn't) fetch from some cf-specific url to transform the images. This doesn't happen and I have no idea how to actually make it work.1 replies
CDCloudflare Developers
•Created by veeque on 1/29/2025 in #pages-help
What's the difference between Cloudflare Pages and Workers Frameworks?
Basically, when making an app, which should I choose and why? The line between them is really blurry.
14 replies
DTDrizzle Team
•Created by veeque on 1/21/2025 in #help
What is the recommended way to have a staging and a production environment?
For the record, I'm using Cloudflare D1. I know how to set up the
wrangler.json
file such that based on the environment I use a different database (same binding, just different database IDs). How can I make it so the drizzle.config.ts
file uses a different .env
file based on the environment being used?4 replies
CDCloudflare Developers
•Created by veeque on 1/20/2025 in #workers-help
Defining RPC methods nicely
Since the methods are pretty big it's nicer to define them in a separate file, but then to add them as RPC methods I do:
Will I really have to define them all by using that "dumb" "self"-call? Also, since I'll likely want the HTTP api to just call the same method instead of having two places that refer to the same function it'd be nice to have it so I have a single source of truth, making the code:
Seems pretty big considering one could (if this didn't have to be a class):
2 replies
CDCloudflare Developers
•Created by veeque on 1/18/2025 in #workers-help
Can Worker Routes be used to host a separate backend on the same domain where the web app is hosted?
Say we have
domain.com
where on app1.domain.com
we host our app. This app has a front-end you'd access by going to app1.domain.com
(or any other sub-domain like app1.domain.com/my/route
). The web-app, a mobile app, or a third-party service might need to fetch data, ideally from app1.domain.com/api/requested/resource
. Can I host the front-end with Workers/Pages on—by default—all routes on that subdomain, but "reserve" /api/*
to be used by a separate worker running the backend code?3 replies
CDCloudflare Developers
•Created by veeque on 1/9/2025 in #workers-help
Is the Workers Build watch path based off the root directory?

5 replies
CDCloudflare Developers
•Created by veeque on 12/29/2024 in #general-help
When Cloudflare mentions "GB" or "MB" do they mean the decimal or binary multiples?
Each Durable Object is allocated 128MB (for billing), so is that 0.128 GB (decimal) or 0.125 GB (binary)?
5 replies
CDCloudflare Developers
•Created by veeque on 11/25/2024 in #general-help
`Registrant State/Province` and `Registrant Country` not redacted
I just ran a
whois
on my domains and in both cases those two fields are not redacted, but they are for the administrative and technical ones. What's up with that?10 replies
CDCloudflare Developers
•Created by veeque on 11/15/2024 in #general-help
Will D1 get jurisdictional restrictions?
I was reading this thread: https://community.cloudflare.com/t/d1-location-hints-explanation-and-improvement/634791
I cannot find any roadmap, so I'm wondering if it's something that has been forgotten
3 replies
CDCloudflare Developers
•Created by veeque on 10/31/2024 in #general-help
How to set up regional services?

5 replies
CDCloudflare Developers
•Created by veeque on 9/11/2024 in #pages-help
How to host multiple pages under the same domain
Let's assume I have a monorepo where each project is a SvelteKit app running on pages. Let's say they run on
app1.pages.dev
, app2.pages.dev
, app3.pages.dev
, and so on.
I now also have a worker that I deploy to handle all this.
Before doing that I have to point out that one page is special, it runs on homepage.pages.dev
and it will be the default page to show (when going to /
, or any other non-app route).
With all that being said:
* When going to /app1
I want to render app1.pages.dev
(also, when going to /app1/literally/anything
I want to render app1.pages.dev/literally/anything
). The same goes for app2
, and any other "custom" route I want
* If this were a switch case, the default would be just rendering the homepage.pages.dev/whatever/happens/to/be/the/uri
What issues I'm facing: I cannot understand how to properly "forward" the url after /app1
and I don't understand how/when assets (the JS, CSS, etc) load properly.
There might be some thing I've tried and either missed or found to be unsuccessful.
Any help would be amazing!3 replies