All checks were successful
continuous-integration/drone/push Build is passing
22 lines
534 B
TypeScript
22 lines
534 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/**",
|
|
},
|
|
],
|
|
},
|
|
reactCompiler: true
|
|
// allowedDevOrigins: ["192.168.3.65", "192.168.3.66"],
|
|
};
|
|
|
|
const withNextIntl = createNextIntlPlugin();
|
|
export default withNextIntl(nextConfig);
|