Files
xyflow/examples/nextjs/next.config.js

10 lines
221 B
JavaScript
Executable File

const withPreconstruct = require('@preconstruct/next');
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
swcMinify: true,
};
module.exports = withPreconstruct({ ...nextConfig });