From 96e3dd15ed3b9ccf2801b54756ee4f40382f6171 Mon Sep 17 00:00:00 2001 From: streaper2 Date: Mon, 2 Mar 2026 14:06:45 +0100 Subject: [PATCH] Removed `serverExternalPackages` and `output` configurations from `next.config.ts` and added build output log. --- build_output4.txt | 71 +++++++++++++++++++++++++++++++++++++++++++++++ next.config.ts | 2 -- 2 files changed, 71 insertions(+), 2 deletions(-) create mode 100644 build_output4.txt diff --git a/build_output4.txt b/build_output4.txt new file mode 100644 index 0000000..6ec1864 --- /dev/null +++ b/build_output4.txt @@ -0,0 +1,71 @@ + +> plumeia@0.1.0 build +> npx prisma generate && next build + +[dotenv@17.3.1] injecting env (4) from .env -- tip: ⚙️ load multiple .env files with { path: ['.env.local', '.env'] } +[dotenv@17.3.1] injecting env (0) from .env.local -- tip: 🛠️ run anywhere with `dotenvx run -- yourcommand` +Loaded Prisma config from prisma.config.ts. + +Prisma schema loaded from prisma\schema.prisma. + +✔ Generated Prisma Client (v7.4.1) to .\node_modules\@prisma\client in 76ms + +Start by importing your Prisma Client (See: https://pris.ly/d/importing-client) + + +⚠ Warning: Next.js inferred your workspace root, but it may not be correct. + We detected multiple lockfiles and selected the directory of C:\Users\streaper2\package-lock.json as the root directory. + To silence this warning, set `turbopack.root` in your Next.js config, or consider removing one of the lockfiles if it's not needed. + See https://nextjs.org/docs/app/api-reference/config/next-config-js/turbopack#root-directory for more information. + Detected additional lockfiles: + * C:\Users\streaper2\Documents\00 - projet\plumeia\package-lock.json + +▲ Next.js 16.1.6 (Turbopack) +- Environments: .env + + Creating an optimized production build ... +✓ Compiled successfully in 1198.1ms + Skipping validation of types + Collecting page data using 31 workers ... + Generating static pages using 31 workers (0/10) ... + Generating static pages using 31 workers (2/10) + Generating static pages using 31 workers (4/10) + Generating static pages using 31 workers (7/10) +✓ Generating static pages using 31 workers (10/10) in 372.5ms + Finalizing page optimization ... + +Route (app) +┌ ○ / +├ ○ /_not-found +├ ƒ /api/ai/generate +├ ƒ /api/ai/transform +├ ƒ /api/auth/[...nextauth] +├ ƒ /api/auth/register +├ ƒ /api/chapters +├ ƒ /api/chapters/[id] +├ ƒ /api/entities +├ ƒ /api/entities/[id] +├ ƒ /api/ideas +├ ƒ /api/ideas/[id] +├ ƒ /api/plans +├ ƒ /api/projects +├ ƒ /api/projects/[id] +├ ƒ /api/projects/[id]/workflow +├ ƒ /api/user/profile +├ ○ /checkout +├ ○ /dashboard +├ ○ /features +├ ○ /login +├ ○ /pricing +├ ○ /profile +├ ƒ /project/[id] +├ ƒ /project/[id]/ideas +├ ƒ /project/[id]/settings +├ ƒ /project/[id]/workflow +├ ƒ /project/[id]/world +└ ○ /signup + + +○ (Static) prerendered as static content +ƒ (Dynamic) server-rendered on demand + diff --git a/next.config.ts b/next.config.ts index 32c93ed..d3d28f0 100644 --- a/next.config.ts +++ b/next.config.ts @@ -1,14 +1,12 @@ import type { NextConfig } from "next"; const nextConfig: NextConfig = { - serverExternalPackages: ["bcrypt", "bcryptjs"], typescript: { // NextAuth v5 beta handlers have type mismatches with Next.js 15 // Remove this when next-auth v5 stable releases ignoreBuildErrors: true, }, - output: "standalone", }; export default nextConfig;