26 lines
581 B
TypeScript
26 lines
581 B
TypeScript
import type { NextConfig } from 'next'
|
|
|
|
const nextConfig: NextConfig = {
|
|
transpilePackages: ['@innungsapp/shared'],
|
|
output: process.env.DOCKER_BUILD ? 'standalone' : undefined,
|
|
experimental: {},
|
|
webpack: (config, { dev }) => {
|
|
if (dev) {
|
|
// Avoid filesystem cache writes on very low-disk dev machines (ENOSPC).
|
|
config.cache = false
|
|
}
|
|
return config
|
|
},
|
|
// Serve uploaded files
|
|
async rewrites() {
|
|
return [
|
|
{
|
|
source: '/uploads/:path*',
|
|
destination: '/api/uploads/:path*',
|
|
},
|
|
]
|
|
},
|
|
}
|
|
|
|
export default nextConfig
|