14 lines
376 B
JavaScript
14 lines
376 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
reactStrictMode: true,
|
|
transpilePackages: ['@cal/shared'],
|
|
// API backend URL - use /api proxy in production
|
|
env: {
|
|
NEXT_PUBLIC_API_URL: process.env.NEXT_PUBLIC_API_URL || '/api/v1/calendar',
|
|
},
|
|
// Enable standalone mode for Docker deployment
|
|
output: 'standalone',
|
|
}
|
|
|
|
module.exports = nextConfig
|