Files
local-voice-assistant/frontend/next.config.js
T
2025-10-09 22:32:04 +02:00

11 lines
249 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
output: 'standalone',
env: {
NEXT_PUBLIC_BACKEND_URL: process.env.NEXT_PUBLIC_BACKEND_URL || 'http://localhost:8003',
},
}
module.exports = nextConfig