7 lines
197 B
JavaScript
7 lines
197 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
output: "standalone",
|
|
serverExternalPackages: ["better-sqlite3"],
|
|
images: { unoptimized: true },
|
|
};
|
|
module.exports = nextConfig;
|