Files
pangolin/next.config.ts
Fred KISSIE a247ef7564 ♻️ import type
2025-11-05 07:33:25 +01:00

18 lines
398 B
TypeScript

import type { NextConfig } from "next";
import createNextIntlPlugin from "next-intl/plugin";
import { pullEnv } from "./src/lib/pullEnv";
// validate env variables on build and such
pullEnv();
const withNextIntl = createNextIntlPlugin();
const nextConfig: NextConfig = {
eslint: {
ignoreDuringBuilds: true
},
output: "standalone"
};
export default withNextIntl(nextConfig);