mirror of
https://github.com/Sevichecc/m-oauth.git
synced 2025-04-30 06:59:29 +08:00
13 lines
270 B
JavaScript
13 lines
270 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
output: "export",
|
|
reactStrictMode: true,
|
|
experimental: {
|
|
appDir: true,
|
|
},
|
|
images: {
|
|
domains: ["cdn.jsdelivr.net", "github.com", "cdn.simpleicons.org"],
|
|
},
|
|
};
|
|
|
|
module.exports = nextConfig;
|