microblog/next.config.js

13 lines
281 B
JavaScript
Executable File

/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true, // Recommended for the `pages` directory, default in `app`.
swcMinify: true,
output: 'standalone',
experimental: {
// Required:
appDir: true,
},
};
module.exports = nextConfig;