livekit-znjj-demo/next.config.js
2025-12-18 09:41:42 +08:00

14 lines
417 B
JavaScript

const createNextPluginPreval = require("next-plugin-preval/config");
const withNextPluginPreval = createNextPluginPreval();
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: false,
// Explicitly allow znjj.wangxin93.eu.org for Dev Origin, per future Next.js requirement.
allowedDevOrigins: [
"znjj.wangxin93.eu.org",
],
};
module.exports = withNextPluginPreval(nextConfig);