portfolio/next.config.ts
Chneemann 3ff0eec28a
Some checks failed
Deploy Portfolio to VPS / deploy (push) Failing after 4s
feat: add next-intl support for localization and update README.md
2026-08-01 08:16:20 +02:00

18 lines
383 B
TypeScript

import createNextIntlPlugin from "next-intl/plugin";
import path from "path";
const withNextIntl = createNextIntlPlugin();
/** @type {import('next').NextConfig} */
const nextConfig = {
output: "standalone" as const,
trailingSlash: true,
images: {
unoptimized: true,
},
turbopack: {
root: path.resolve(__dirname),
},
};
export default withNextIntl(nextConfig);