/** @type {import('next').NextConfig} */
const nextConfig = {
  experimental: {
    appDir: true,
  },
  swcPlugins: [
    [
      'next-superjson-plugin',
      {
        excluded: [],
      },
    ],
  ],
};

export default nextConfig;