bdcfa8f3c5
Next.js 14 + node:sqlite memorial site with: - Hero section, photo slideshow & gallery - Memory/thoughts editor (admin) - Music player with upload - Video gallery - Docker Compose deployment - Responsive warm earth tone design
10 lines
157 B
JavaScript
10 lines
157 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
output: 'standalone',
|
|
images: {
|
|
unoptimized: true,
|
|
},
|
|
}
|
|
|
|
module.exports = nextConfig
|