next.config.js

1/** @type {import('next').NextConfig} */
2const nextConfig = {
3  experimental: {
4    appDir: true,
5  },
6}
7
8module.exports = nextConfig