- Added .ci/docker/ to .gitignore to exclude Docker CI files. - Set Next.js output configuration to "standalone" for optimized deployment. - Updated package-lock.json to include new optional dependency for Windows SWC binaries.
8 lines
129 B
TypeScript
8 lines
129 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
output: "standalone",
|
|
};
|
|
|
|
export default nextConfig;
|