Files
scrapy-ui/next.config.ts
Sebastian Krüger fa31df4e02 refactor: Remove /ui path prefix
Removed the /ui basePath from Next.js configuration to serve the app at root path:

- Removed basePath: "/ui" from next.config.ts
- Updated all API route calls from /ui/api/* to /api/*
- App now accessible at root path instead of /ui subdirectory

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-05 06:29:58 +01:00

14 lines
242 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
output: "standalone",
experimental: {
optimizePackageImports: ["lucide-react"],
},
turbopack: {
root: process.cwd(),
}
};
export default nextConfig;