Is it possible to have a comments section on pages?
I'm thinking of adding comments to my blog and from a quick look online, it seems like I would need a server/php to be able to have comments to work properly.
I might be wrong about pages not supporting server stuff but I would just like someone to let me know for sure.
2 Replies
Hey @GhaztliousMoths , you could definitely use Pages Functions for this: https://developers.cloudflare.com/pages/functions/, along with a durable object for comment storage (see: https://developers.cloudflare.com/pages/functions/bindings/#durable-objects)
You might find that Workers Assets is easier to work with, as there are a lot more Workers products that have compatibility (https://developers.cloudflare.com/workers/static-assets/compatibility-matrix/)
Thank you!