14 lines
417 B
JavaScript
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);
|