Frontend Svelte/Vite config files were ignored by .gitignore
Description
While adding or updating frontend/svelte-app/svelte.config.js and frontend/svelte-app/vite.config.js, those files were not visible in git status and therefore were not being committed. The Svelte build in Docker reported "No adapter specified" during the frontend build; investigation revealed the app's Svelte config existed locally but git ignored it.
Root cause
A broad .gitignore rule (matching *.config.js) caused Svelte/Vite config files under frontend/svelte-app to be ignored.
`
Frontend Svelte/Vite config files were ignored by
.gitignoreDescription
While adding or updating
frontend/svelte-app/svelte.config.jsandfrontend/svelte-app/vite.config.js, those files were not visible ingit statusand therefore were not being committed. The Svelte build in Docker reported "No adapter specified" during the frontend build; investigation revealed the app's Svelte config existed locally but git ignored it.Root cause
A broad
.gitignorerule (matching*.config.js) caused Svelte/Vite config files underfrontend/svelte-appto be ignored.`