Files
Michess/client/next.config.js
2023-02-15 14:09:33 +08:00

10 lines
169 B
JavaScript

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