Files
learn-languages/next.config.ts
goddonebianu 3db1b3716f
Some checks reported errors
continuous-integration/drone/push Build was killed
重构了translator,写了点数据库、后端api路由
2025-11-10 21:40:25 +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);