#Failed to resolve entry
3 messages · Page 1 of 1 (latest)
Hi @timber anvil. I'm kapa.ai, your friendly support bot. I will try to answer your question by searching through the knowledge base. :wave:
Hmm, I don't know enough to give you a confident answer yet. The error message you provided seems to be related to a package resolution issue, but it's not clear which package is causing the problem. The package name "<@&1055234544183287879>/vercel" doesn't appear in any of the information extracts provided.
However, if you're trying to use the @astrojs/vercel adapter, you can install it using the following commands:
# Using NPM
npx astro add vercel
# Using Yarn
yarn astro add vercel
# Using PNPM
pnpm astro add vercel
Or manually:
npm install @astrojs/vercel
And then add it to your astro.config.mjs file:
import { defineConfig } from 'astro/config';
import vercel from '@astrojs/vercel/serverless';
export default defineConfig({
output: 'server',
adapter: vercel(),
});