18 lines
383 B
TypeScript
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);
|