mirror of
https://git.v0id.ovh/n3wt-innov/n3wt-school.git
synced 2026-01-29 16:03:21 +00:00
16 lines
376 B
JavaScript
16 lines
376 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 = {
|
|
experimental: {
|
|
instrumentationHook: true,
|
|
},
|
|
env: {
|
|
NEXT_PUBLIC_APP_VERSION: pkg.version,
|
|
},
|
|
};
|
|
|
|
export default withNextIntl(nextConfig); |