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