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

module.exports = nextConfig;