feat(ui): add photo file handling in Vite config

* include new image assets in static/photos
* define __PHOTO_FILES__ for dynamic photo URLs
* update package.json and package-lock.json with @types/node
This commit is contained in:
2026-08-12 00:30:27 +02:00
parent 1377d2791c
commit 89f19cc048
39 changed files with 37 additions and 9 deletions
+11
View File
@@ -1,12 +1,23 @@
import { readdirSync } from 'node:fs';
import tailwindcss from '@tailwindcss/vite';
import adapter from '@sveltejs/adapter-static';
import { sveltekit } from '@sveltejs/kit/vite';
import { defineConfig } from 'vite';
// Background photos live in static/photos so Vite copies them verbatim
// (original filenames, no content hash) instead of running them through the
// module asset pipeline.
const photoFiles = readdirSync('static/photos').filter((name) =>
/\.(jpe?g|png)$/i.test(name)
);
export default defineConfig({
server: {
fs: { allow: ['assets'] }
},
define: {
__PHOTO_FILES__: JSON.stringify(photoFiles)
},
plugins: [
tailwindcss(),
sveltekit({