add external packages

This commit is contained in:
2026-03-25 17:57:47 -04:00
parent f788b1a441
commit 4a9849d9b5
2 changed files with 6 additions and 1 deletions

3
.gitignore vendored
View File

@@ -4,3 +4,6 @@ data/
node_modules/ node_modules/
out/ out/
.thumbnails/ .thumbnails/
medialore.db
medialore.db-shm
medialore.db-wal

View File

@@ -1,5 +1,7 @@
import type { NextConfig } from 'next' import type { NextConfig } from 'next'
const nextConfig: NextConfig = {} const nextConfig: NextConfig = {
serverExternalPackages: ['better-sqlite3', 'sharp'],
}
export default nextConfig export default nextConfig