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

module.exports = nextConfig;