m-oauth/next.config.js
2023-06-07 21:21:42 +08:00

11 lines
201 B
JavaScript

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