microblog/next.config.js

12 lines
257 B
JavaScript
Raw Normal View History

2022-11-06 21:07:22 +01:00
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true, // Recommended for the `pages` directory, default in `app`.
swcMinify: true,
experimental: {
// Required:
appDir: true,
},
};
module.exports = nextConfig;