aboutsummaryrefslogtreecommitdiffstats
path: root/next.config.js
blob: b8838d71f3fcb6d860e67b54e1ecdcccbf18c49c (plain)
1
2
3
4
5
6
7
8
9
/** @type {import('next').NextConfig} */
const nextConfig = {
  output: 'standalone',
  experimental: {
    appDir: true,
  },
};

module.exports = nextConfig;