All checks were successful
Deploy / deploy (push) Successful in 9m29s
- Modified redirects in next.config.ts to change the destination for "/sohbet" to "/listem". - Added new dependencies in package.json: marked, motion, react-markdown, remark-breaks, remark-gfm, shiki, and use-stick-to-bottom. - Updated pnpm-lock.yaml to reflect the new package versions and dependencies. - Removed obsolete stack files for Flutter, Nuxt, Nuxt.js, React Native, and Svelte from the UI/UX Pro Max skill data. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
16 lines
478 B
TypeScript
16 lines
478 B
TypeScript
import type { NextConfig } from "next";
|
||
|
||
const nextConfig: NextConfig = {
|
||
output: "standalone",
|
||
serverExternalPackages: ["better-sqlite3", "iyzipay", "@libsql/client"],
|
||
async redirects() {
|
||
// Eski akış /sonuc modalına taşındı. /rapor/yazdir korunur (tam eşleşme).
|
||
return [
|
||
{ source: "/rapor", destination: "/sonuc", permanent: false },
|
||
{ source: "/sohbet", destination: "/listem", permanent: false },
|
||
];
|
||
},
|
||
};
|
||
|
||
export default nextConfig;
|