aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/envshare/next.config.js
blob: 73bfb7b0d7a9c91677a8e732d382b8a09e13d686 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
/** @type {import('next').NextConfig} */
const nextConfig = {
  experimental: {
    appDir: true,
  },
  images: {
    domains: ["twitter.com", "pbs.twimg.com"],
  },
};

module.exports = nextConfig;