10 lines
268 B
JavaScript
10 lines
268 B
JavaScript
const createNextPluginPreval = require("next-plugin-preval/config");
|
|
const withNextPluginPreval = createNextPluginPreval();
|
|
|
|
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
reactStrictMode: false,
|
|
};
|
|
|
|
module.exports = withNextPluginPreval(nextConfig);
|