File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed
Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,10 @@ import './src/env.mjs';
44
55const config : NextConfig = {
66 // Use S3 bucket for static assets with app-specific path
7- assetPrefix : process . env . NODE_ENV === 'production' ? `${ process . env . STATIC_ASSETS_URL } /app` : '' ,
7+ assetPrefix :
8+ process . env . NODE_ENV === 'production' && process . env . STATIC_ASSETS_URL
9+ ? `${ process . env . STATIC_ASSETS_URL } /app`
10+ : '' ,
811 // Ensure fallback to local assets if CDN fails
912 generateEtags : false ,
1013 poweredByHeader : false ,
Original file line number Diff line number Diff line change 11{
22 "name" : " @trycompai/db" ,
33 "description" : " Database package with Prisma client and schema for Comp AI" ,
4- "version" : " 1.3.1 " ,
4+ "version" : " 1.3.2 " ,
55 "dependencies" : {
66 "@prisma/client" : " ^6.13.0" ,
77 "dotenv" : " ^16.4.5"
You can’t perform that action at this time.
0 commit comments