Replace the legacy mule-image backend with PhotoPrism plus a thin SvelteKit client and a Node sidecar for endpoints PhotoPrism doesn't expose (file rename), and add a two-phase migrator (metadata via PUT, heaps → albums) for the existing Postgres library. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
19 lines
528 B
JavaScript
19 lines
528 B
JavaScript
import adapter from '@sveltejs/adapter-static';
|
|
|
|
/** @type {import('@sveltejs/kit').Config} */
|
|
const config = {
|
|
compilerOptions: {
|
|
// Force runes mode for the project, except for libraries.
|
|
runes: ({ filename }) => (filename.split(/[/\\]/).includes('node_modules') ? undefined : true)
|
|
},
|
|
kit: {
|
|
// SPA mode: every unknown path serves index.html, which then mounts
|
|
// the client router. Required for dynamic routes (e.g. /photo/[uid]).
|
|
adapter: adapter({
|
|
fallback: 'index.html'
|
|
})
|
|
}
|
|
};
|
|
|
|
export default config;
|