Files
local-voice-assistant/frontend/next.config.js
T
2025-10-08 16:37:49 +02:00

10 lines
198 B
JavaScript

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