Files
HRM/svelte.config.js
T
eewing 4e96e505db
CI / build (push) Has been skipped
CI / deploy (push) Failing after 21s
Update Svelte configuration to use adapter-node and add dependency in package.json
- Switched from '@sveltejs/adapter-auto' to '@sveltejs/adapter-node' in svelte.config.js for better environment support.
- Added '@sveltejs/adapter-node' as a dependency in package.json to ensure compatibility.
2026-02-17 10:02:53 -06:00

11 lines
169 B
JavaScript

import adapter from '@sveltejs/adapter-node';
/** @type {import('@sveltejs/kit').Config} */
const config = {
kit: {
adapter: adapter()
}
};
export default config;