9 lines
161 B
JavaScript
9 lines
161 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
output: 'standalone',
|
|
experimental: {
|
|
typedRoutes: true
|
|
}
|
|
};
|
|
|
|
export default nextConfig;
|