Files
meezi/web/admin/next.config.mjs
T

11 lines
254 B
JavaScript
Raw Normal View History

2026-05-28 18:45:57 +03:30
import createNextIntlPlugin from "next-intl/plugin";
const withNextIntl = createNextIntlPlugin("./src/i18n/request.ts");
/** @type {import('next').NextConfig} */
const nextConfig = {
output: "standalone",
};
export default withNextIntl(nextConfig);