20 lines
375 B
TypeScript
20 lines
375 B
TypeScript
import "./src/env.js";
|
|
import { fileURLToPath } from "node:url";
|
|
import type { NextConfig } from "next";
|
|
|
|
const dirname = fileURLToPath(new URL(".", import.meta.url));
|
|
|
|
const config = {
|
|
reactStrictMode: true,
|
|
i18n: {
|
|
locales: ["en"],
|
|
defaultLocale: "en",
|
|
},
|
|
turbopack: {
|
|
root: dirname,
|
|
},
|
|
reactCompiler: true,
|
|
} as NextConfig;
|
|
|
|
export default config;
|