18 lines
317 B
TypeScript
18 lines
317 B
TypeScript
import type { NextConfig } from 'next';
|
|
|
|
const nextConfig: NextConfig = {
|
|
reactStrictMode: true,
|
|
transpilePackages: ['@kit/ui', '@kit/shared'],
|
|
reactCompiler: true,
|
|
devIndicators: {
|
|
position: 'bottom-right',
|
|
},
|
|
logging: {
|
|
fetches: {
|
|
fullUrl: true,
|
|
},
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|