datahub/examples/basic-example/next.config.js
2023-04-27 15:40:28 -03:00

8 lines
137 B
JavaScript

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