#Vercel deployment errors on every second or third deployment
17 messages · Page 1 of 1 (latest)
It looks like no-one has responded to your question yet. People might not be available right now or don’t know how to answer your question. Want an answer while you wait? Try asking our experimental bot in #1095492539085230272.
I think I have found my issue. The problem is that turbo is trying to build my astro repo but I'm using it for 4 websites. So I need to exclude astro from turbo (or at least the build part, so that is not shared)
/solve
@median osprey are you using hybrid in your astro settings?
hybrid, but I have solved it by creating a new repo
I wasn't able to get the right turbo-config, so I moved on
I see, i have enabled all the required experimental flags. Still getting errors
It tried to build the static routes but fails to find the first image, when i run pnpm run astro build
Been trying to figure out what the issue is
Any advice on how to try and fix this?
Not sure what your specific issue is tbh
Are you using a mono-repo setup? Whats the error message on vercel?
The same message as this one
Did you set the build config to Astro in your vercel project?
How does your astro.config.js looks like?
export default defineConfig({
intergrations: [react(), tailwind(), astroImageTools, compress()],
output: 'hybrid',
experimental: {
hybridOuput: true,
assets: true,
},
adapter: vercel({
imageService: true
})
});