chore(web): update Next.js config, Tailwind config, and type definitions

Sync next-env.d.ts, update next.config.js and tailwind.config.ts with
latest settings, and refresh tsconfig build info.

Co-Authored-By: Paperclip <noreply@paperclip.ing>
This commit is contained in:
Ho Ngoc Hai
2026-04-11 01:40:30 +07:00
parent 1b86c5bf2c
commit 9914d02439
4 changed files with 10 additions and 2 deletions

View File

@@ -13,6 +13,10 @@ const nextConfig = {
protocol: 'https',
hostname: '**',
},
// MinIO / local object storage in development
...(process.env.NODE_ENV === 'development'
? [{ protocol: 'http', hostname: 'localhost' }, { protocol: 'http', hostname: '127.0.0.1' }]
: []),
],
},
async headers() {