6b1173b4db
Removes output: "standalone" from next.config.js, updates build/start/preview scripts to use next build/next start, and updates Dockerfile to copy .next output directory and run via bun run start instead of server.js. https://claude.ai/code/session_014126WHVRT8mftmqkU6dajG
14 lines
313 B
JavaScript
14 lines
313 B
JavaScript
/**
|
|
* Run `build` or `dev` with `SKIP_ENV_VALIDATION` to skip env validation. This is especially useful
|
|
* for Docker builds.
|
|
*/
|
|
import "./src/env.js";
|
|
|
|
/** @type {import("next").NextConfig} */
|
|
const config = {
|
|
reactCompiler: false,
|
|
serverExternalPackages: ["pg", "better-auth"],
|
|
};
|
|
|
|
export default config;
|