9 lines
162 B
TypeScript
9 lines
162 B
TypeScript
import type { NextConfig } from "next";
|
|
const {i18n} = require("./next-i18next.config");
|
|
|
|
const nextConfig: NextConfig = {
|
|
i18n,
|
|
};
|
|
|
|
export default nextConfig;
|