From 60159970aab2956dd0c488d42626da27404e1810 Mon Sep 17 00:00:00 2001 From: kevin-asprec Date: Tue, 14 Apr 2026 06:30:59 +0800 Subject: [PATCH] fix: use next.config.mjs to avoid typescript build dependency --- next.config.ts => next.config.mjs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) rename next.config.ts => next.config.mjs (56%) 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', };