diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 826e232..66ee257 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -54,6 +54,9 @@ jobs: with: name: next-build + - name: List directory structure (debug) + run: ls -R + - name: Deploy to Docker run: | docker build -t nextjs-app . diff --git a/next.config.ts b/next.config.ts index 68a6c64..78ae706 100644 --- a/next.config.ts +++ b/next.config.ts @@ -1,4 +1,4 @@ -import type { NextConfig } from "next"; +type NextConfig = any; const nextConfig: NextConfig = { output: "standalone",