Hello,
I can't manage to access my Prismic / Nuxt 3 website on Netlify.
I get a 500 error even if my deployment went well.
Here is my config :
prismic: {
endpoint: process.env.PRISMIC_ENDPOINT,
clientConfig: {
accessToken: process.env.PRISMIC_TOKEN,
routes: [
// Resolves the Homepage document to "/"
{
type: 'homepage',
path: '/',
},
{
type: 'page',
path: '/:uid',
}
],
},
},
My webhook is working fine too.
I don't understand what I'm doing wrong.
The only weird thing I see is that there is no index.html generated in my dist folder on Netlify.
Thanks for your help,
David