diff --git a/next.config.ts b/next.config.mjs similarity index 56% rename from next.config.ts rename to next.config.mjs index 42efe09..ab09779 100644 --- a/next.config.ts +++ b/next.config.mjs @@ -1,6 +1,5 @@ -import type { NextConfig } from 'next'; - -const nextConfig: NextConfig = { +/** @type {import('next').NextConfig} */ +const nextConfig = { transpilePackages: ['@fiberops/shared'], output: 'standalone', };