Files
kdot/next.config.ts
Joshua Higgins 885899bed3 Setting up docker
2025-05-26 22:37:30 -04:00

13 lines
216 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
/* config options here */
};
module.exports = {
// ... rest of the configuration.
output: "standalone",
};
export default nextConfig;