9 lines
172 B
TypeScript
9 lines
172 B
TypeScript
import type { NextConfig } from 'next';
|
|
|
|
const nextConfig: NextConfig = {
|
|
transpilePackages: ['@fiberops/shared'],
|
|
output: 'standalone',
|
|
};
|
|
|
|
export default nextConfig;
|