10 lines
249 B
JavaScript
10 lines
249 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
// Ensure the app works properly in Docker
|
|
output: "standalone",
|
|
// This helps with hot reloading in Docker
|
|
serverExternalPackages: ["better-sqlite3"],
|
|
};
|
|
|
|
export default nextConfig;
|