13 lines
253 B
TypeScript
13 lines
253 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
reactStrictMode: true,
|
|
output: "standalone",
|
|
transpilePackages: ["@cmbot/db", "@cmbot/shared"],
|
|
experimental: {
|
|
typedRoutes: true,
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|