omnidash/next.config.js

10 lines
186 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
experimental: {
esmExternals: "loose",
appDir: true,
},
}
module.exports = nextConfig