tagging #3

Merged
gpatti merged 8 commits from tagging into main 2026-03-25 23:53:53 +00:00
2 changed files with 6 additions and 1 deletions
Showing only changes of commit 4a9849d9b5 - Show all commits

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