7 lines
159 B
JavaScript
7 lines
159 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
transpilePackages: ['@fiberops/shared'],
|
|
output: 'standalone',
|
|
};
|
|
export default nextConfig;
|