docker shit

This commit is contained in:
rattatwinko
2025-06-16 22:20:38 +02:00
parent 1303078c2e
commit 682e006e0b
9 changed files with 439 additions and 35 deletions

17
next.config.js Normal file
View File

@@ -0,0 +1,17 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
output: 'standalone',
reactStrictMode: true,
swcMinify: true,
// Ensure we can access the app from outside the container
experimental: {
outputFileTracingRoot: undefined,
},
// Configure the hostname and port
server: {
hostname: '0.0.0.0',
port: 8080,
},
}
module.exports = nextConfig