- Add Dockerfile and docker-compose.yml for VPS/LXC deployment. - Update README with setup, environment variables, and deployment notes. - Commit initial Prisma migration for SQLite schema. - Configure Next.js for standalone output and dev origin allowlist.
9 lines
169 B
TypeScript
9 lines
169 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
output: 'standalone',
|
|
allowedDevOrigins: ['192.168.2.197'],
|
|
};
|
|
|
|
export default nextConfig;
|