m-oauth/next.config.js
2023-06-08 02:51:25 +08:00

12 lines
250 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
experimental: {
appDir: true,
},
images: {
domains: ["cdn.jsdelivr.net", "github.com", "cdn.simpleicons.org"],
},
};
module.exports = nextConfig;