79447983

Date: 2025-02-18 10:59:31
Score: 1
Natty:
Report link

Please check astro.config.mjs file. Since your website is working fine locally, make sure base path is configured properly for cloud env.

export default defineConfig({
    ...
    server: {
        port: 3000,
    },
    base: process.env.NODE_ENV === 'production' ? '/' : '/',
})
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: John W