Files
BA_TTS_Annotation_Plattform/next.config.ts
averel10 1debc1b36e feat: update docker-compose to add static file service and configure Nginx with Traefik routing
feat: enhance Next.js configuration with rewrites for public directory
fix: adjust audio file path in AudioPlayer component to include public directory
2026-03-13 09:40:56 +01:00

23 lines
375 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
/* config options here */
experimental: {
serverActions: {
},
},
output: "standalone",
async rewrites() {
return {
beforeFiles: [
{
source: '/public/:path*',
destination: '/:path*',
},
],
};
},
};
export default nextConfig;