SheldonFromBBT
Explore posts from serversDTDrizzle Team
•Created by SheldonFromBBT on 1/25/2025 in #help
Cannot use supabase serverless on cloudflare pages
Hey all I get this error on deployment :
Error: Failed to publish your Function. Got error: Uncaught Error: No such module "node:events".
This is my db setup:
I tried everything, but could not get any success on this
4 replies
CDCloudflare Developers
•Created by SheldonFromBBT on 12/21/2024 in #general-help
Using sub-route or subdirectory as a sub-domain
Hey all, I want to use a sub domain on my main domain as the sub directory, for example : I want to show my
/blog
when you visit blog.example.com
Can we do this in cloudflare itself? I tried to find solutions for this, but not quite getting the thing I want, I DONT want redirects, I just need the subdomain behave as the sub-route in my website
Thanks.1 replies
CDCloudflare Developers
•Created by SheldonFromBBT on 12/19/2024 in #general-help
Clarity on "Client Max Upload Size"
Hey everyone, I just wanted to know that how does cf exactly enforce the limit of client max upload size? for example on free tier its 100MB, so does it mean that my user or client cannot upload or share anything above 100MB? for example, If they want to upload a big file (like video or something) on S3 or similar solutions and they couldn't? How could I solve this issue? If I want to build app where client would need share big files.
Help would be really appreciated!
12 replies
KPCKevin Powell - Community
•Created by SheldonFromBBT on 5/12/2024 in #front-end
Make height of a scrolling div less than certain height (with calc())
Hey there, am facing this issue where my main div doesn't stay on the certain specified height which should be less than some other element, in this example it should be min-h-[calc(100dvh-2.5rem)], where 2.5rem is height of a navbar located at bottom with fixed position, What I want to achieve is that main div should be scrollable without its bottom content getting overlapped with the navbar
The main thing is that it works untill more elements are added where it becomes scrollable
A playground will make you understand better - https://play.tailwindcss.com/FchqlK9POr
Thanks!
13 replies
The new and updated version for using socket.io handler with Deno.serve()
Hey there! am getting a error when I pass socket.io handler to Deno.serve(),
Here is what am doing :
Deno.serve(io.handler(), {
port: 3000,
});
Additional code for refrence :
import { Server } from "https://deno.land/x/[email protected]/mod.ts";
const io = new Server({
cors: {
origin: [
"https://localhost:5173",
],
credentials: true,
methods: ["GET", "POST"],
},
});
18 replies
KPCKevin Powell - Community
•Created by SheldonFromBBT on 1/11/2024 in #front-end
Overflowing issues ( Height related )
Hey there! I am having this issue where my content inside the div is overflowing, I am totally unsure and clueless why is this happening.
Here this is the screen recording of actual site, and what is happening, I have this
div
inside of main
tag, and dummy text to illustrate whats happening, blue background is to show the real overflowing problem, Thanks24 replies