Files
local-voice-assistant/frontend/next.config.js
T
2025-10-23 14:46:21 +02:00

11 lines
253 B
JavaScript

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