I have been following the netlify docs to use their email integration, I'm personally trying with Mailgun. https://docs.netlify.com/integrations/email-integration/
I've already linked the project with CLI and successfuly got to run netlify build and netlify dev, but I get this on my terminal:
⠧ Waiting for framework port 3000. This can be configured using the 'targetPort' property in the netlify.toml
Here's my netlify.toml file:
[build]
command = "npm run build"
publish = "dist"
[[plugins]]
package = "@netlify/plugin-emails"
[dev]
command = "yarn start"
port = 8888
targetPort = 3000
publish = "dist"
autoLaunch = true
framework = "astro"
btw, I have an emails/contact/index.html file from the root of the project, but if I try accessing localhost:3000/.netlify/functions/emails as per the docs, I get my 404 page.