I’ve been trying to deploy my application for quite a while now, but I got completely stuck and have no idea. Basically when I deploy everything works wine on *.workers.dev, but when I’m trying to access my actual domain, I get 404 for all my sources. I was wondering if it has something to do with route, here is my wrangler.toml. I’m building my website on nuxt 3.
name = "project"
main = "./.output/server/index.mjs"
workers_dev = true
compatibility_date = "2022-09-10"
[env.develop]
name = "development"
route = domain.dev/test-route/*
[env.master]
name = "production"
route = "domain.prod/test-route/*"
[site]
bucket = ".output/public"```