Astro Info
Astro v6.2.1
Node v25.9.0
System Linux (x64)
Package Manager unknown (yay/pacman)
Output static
Adapter @astrojs/node
Integrations none
If this issue only occurs in one browser, which browser is a problem?
No response
Describe the Bug
using these settings
> cat astro.config.mjs
// @ts-check
import { defineConfig } from 'astro/config';
import node from '@astrojs/node';
// https://astro.build/config
export default defineConfig({
build: {
// Example: Generate `page.html` instead of `page/index.html` during build.
format: 'file'
},
adapter: node({
mode: 'standalone'
})
});
results in all static pages other than index to be incorrectly served (base project attached)
Archive.zip
reproduction steps
- download reproduction project
- install dependencies and build
- run result
node ./dist/server/entry.mjs
- test behavior
visiting /
works fine
visiting /server
works fine
visiting /static
doesnt serve the page no matter what
What's the expected result?
static pages served normally
Link to Minimal Reproducible Example
attached earlier
Participation
Astro Info
If this issue only occurs in one browser, which browser is a problem?
No response
Describe the Bug
using these settings
results in all static pages other than index to be incorrectly served (base project attached)
Archive.zip
reproduction steps
visiting /
works fine
visiting /server
works fine
visiting /static
doesnt serve the page no matter what
What's the expected result?
static pages served normally
Link to Minimal Reproducible Example
attached earlier
Participation