This commit is contained in:
爱喝水的木子
2026-03-13 16:28:51 +08:00
commit bfdf4843e1
38 changed files with 9490 additions and 0 deletions

16
next.config.js Normal file
View File

@@ -0,0 +1,16 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
experimental: {
serverActions: true
},
images: {
remotePatterns: [
{
protocol: "https",
hostname: "img.020417.xyz"
}
]
}
};
module.exports = nextConfig;