diff --git a/vercel.json b/vercel.json index b40a4bf..fe11263 100644 --- a/vercel.json +++ b/vercel.json @@ -4,6 +4,13 @@ "src": "eventyog/wsgi.py", "use": "@vercel/python", "config": { "maxLambdaSize": "15mb", "runtime": "python3.11.3" } + }, + { + "src": "build_files.sh", + "use": "@vercel/static-build", + "config": { + "distDir": "staticfiles" + } } ], "routes": [ @@ -11,5 +18,6 @@ "src": "/(.*)", "dest": "eventyog/wsgi.py" } - ] + ], + "outputDirectory": "staticfiles" }