重构了translator,写了点数据库、后端api路由
Some checks reported errors
continuous-integration/drone/push Build was killed

This commit is contained in:
2025-11-10 21:40:25 +08:00
parent b30f9fb0c3
commit 3db1b3716f
51 changed files with 1029 additions and 432 deletions

View File

@@ -3,7 +3,17 @@ import createNextIntlPlugin from "next-intl/plugin";
const nextConfig: NextConfig = {
/* config options here */
output: "standalone",
allowedDevOrigins: ["192.168.3.65", "192.168.3.66"],
images: {
remotePatterns: [
{
protocol: "https",
hostname: "avatars.githubusercontent.com",
port: "",
pathname: "/u/**",
},
],
},
// allowedDevOrigins: ["192.168.3.65", "192.168.3.66"],
};
const withNextIntl = createNextIntlPlugin();