feat(web): add Next.js project configuration

This commit is contained in:
2025-01-02 12:00:00 -05:00
parent 1a5e1d6c38
commit 1d98cd5a73
3 changed files with 59 additions and 0 deletions

9
web/next.config.js Normal file
View File

@@ -0,0 +1,9 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
output: 'standalone',
env: {
NEXT_PUBLIC_API_URL: process.env.NEXT_PUBLIC_API_URL || 'http://localhost:8080',
},
}
module.exports = nextConfig