Files
learn-languages/next.config.ts
goddonebianu d4f786c990
Some checks failed
continuous-integration/drone/push Build is failing
重构了translator,写了点数据库、后端api路由
2025-11-10 21:42:44 +08:00

21 lines
512 B
TypeScript

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