add tagging system for media items #1

Merged
gpatti merged 2 commits from claude/compassionate-feistel into tagging 2026-03-25 22:18:45 +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/
out/
.thumbnails/
medialore.db
medialore.db-shm
medialore.db-wal

View File

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