// astro.config.mjs import { defineConfig } from 'astro/config'; import node from '@astrojs/node'; export default defineConfig({ output: 'server', adapter: node({ mode: 'standalone' }), }); --- // src/pages/products/[id].astro (Chapter 3's own dynamic route, updated) const { id } = Astro.params; ---