mirror of
https://git.v0id.ovh/n3wt-innov/n3wt-school.git
synced 2026-01-28 15:33:22 +00:00
17 lines
400 B
JavaScript
17 lines
400 B
JavaScript
import createNextIntlPlugin from 'next-intl/plugin';
|
|
import pkg from "./package.json" assert { type: "json" };
|
|
|
|
const withNextIntl = createNextIntlPlugin();
|
|
|
|
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
output: "standalone",
|
|
experimental: {
|
|
instrumentationHook: true,
|
|
},
|
|
env: {
|
|
NEXT_PUBLIC_APP_VERSION: pkg.version,
|
|
},
|
|
};
|
|
|
|
export default withNextIntl(nextConfig); |