mirror of
https://github.com/Sevichecc/m-oauth.git
synced 2025-04-29 22:49:31 +08:00
9 lines
209 B
JavaScript
9 lines
209 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
reactStrictMode: true,
|
|
images: {
|
|
domains: ["cdn.jsdelivr.net", "github.com", "cdn.simpleicons.org"],
|
|
},
|
|
};
|
|
|
|
module.exports = nextConfig;
|