From 3e696513a27cd4a5a54d44a7a0e229fe068e92c6 Mon Sep 17 00:00:00 2001 From: Sean Massa Date: Wed, 18 May 2022 16:35:15 -0500 Subject: [PATCH] [examples] add `.output` to `.vercelignore` (#7817) When running `nuxi build` locally, you'll end up with a `.output` directory. This is not used to produce a vercel deployment and can cause confusion with Build Output API v2 (which also expects a `.output` directory). It's better to leave this ignored. --- examples/nuxtjs/.vercelignore | 1 + 1 file changed, 1 insertion(+) diff --git a/examples/nuxtjs/.vercelignore b/examples/nuxtjs/.vercelignore index dd4130ecb..f89c454c4 100644 --- a/examples/nuxtjs/.vercelignore +++ b/examples/nuxtjs/.vercelignore @@ -2,3 +2,4 @@ README.md .nuxt node_modules *.log +.output