Hello! I am building a website that is static enough that I believe Astro would be the best choice to generate my pages with, rather than making API calls each time. My website is about guitars and so my database contains tables for manufacturer, model, and specs. I am working towards building the route like so www.website.com/mfg/:mfg_id/model/:model_id and I am not sure what is preventing me from connecting to my page when I visit http://localhost:4321/mfg/104/models/161
My Astro file is placed at /pages/[...slug].astro and I will attach screenshots of that file and my content.config.ts
Here is the error along with a call to console.log to print the slug variable in my loop.
Slug: /mfg/104/model/160
Slug: /mfg/104/model/161
Slug: /mfg/104/model/162
19:13:56 [WARN] [router] A getStaticPaths() route pattern was matched, but no matching static path was found for requested path /mfg/104/models/161.
Possible dynamic routes being matched: src/pages/[...slug].astro.
19:13:56 [404] /mfg/104/models/161 11ms