mirror of
https://github.com/fergalmoran/opengifame.git
synced 2025-12-22 09:38:44 +00:00
9 lines
173 B
JavaScript
9 lines
173 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
reactStrictMode: true,
|
|
swcMinify: true,
|
|
experimental: { appDir: true },
|
|
};
|
|
|
|
module.exports = nextConfig;
|