Files
awesome-chatgpt-prompts-pro…/next.config.ts
2026-01-04 02:09:11 +03:00

57 lines
1.2 KiB
TypeScript

import type { NextConfig } from "next";
import createNextIntlPlugin from "next-intl/plugin";
const withNextIntl = createNextIntlPlugin("./src/i18n/request.ts");
const nextConfig: NextConfig = {
reactCompiler: true,
// Configure webpack for raw imports
webpack: (config) => {
config.module.rules.push({
resourceQuery: /raw/,
type: 'asset/source',
});
return config;
},
// Enable standalone output for Docker
// output: "standalone",
// Experimental features
experimental: {
// Enable server actions
serverActions: {
bodySizeLimit: "2mb",
},
},
// Image optimization
images: {
remotePatterns: [
{
protocol: "https",
hostname: "**",
},
],
},
// Redirects
async redirects() {
return [
{
source: "/vibe",
destination: "/categories/vibe",
permanent: true,
},
{
source: "/sponsors",
destination: "/categories/sponsors",
permanent: true,
},
{
source: "/embed-preview",
destination: "/embed",
permanent: true,
},
];
},
};
export default withNextIntl(nextConfig);