mirror of
https://github.com/JOYCEQL/magic-resume.git
synced 2026-07-03 14:07:11 +02:00
13 lines
320 B
JavaScript
13 lines
320 B
JavaScript
import createNextIntlPlugin from "next-intl/plugin";
|
|
const withNextIntl = createNextIntlPlugin();
|
|
|
|
/** @type {import('next').NextConfig} */
|
|
const config = {
|
|
typescript: {
|
|
ignoreBuildErrors: true,
|
|
},
|
|
...(process.env.NEXT_STANDALONE === "1" && { output: "standalone" }),
|
|
};
|
|
|
|
export default withNextIntl(config);
|