mirror of
https://github.com/furyhawk/bus_sg_app.git
synced 2026-07-21 02:06:48 +00:00
- Add main application styles in app.css - Create basic HTML structure in app.html - Implement server-side hooks for API proxying in hooks.server.js - Set up layout component in +layout.svelte - Develop main page with endpoint explorer and arrival check functionality in +page.svelte - Configure SvelteKit with adapter in svelte.config.js - Set up Vite configuration for SvelteKit in vite.config.js
11 lines
173 B
JavaScript
11 lines
173 B
JavaScript
import adapter from "@sveltejs/adapter-auto";
|
|
|
|
/** @type {import('@sveltejs/kit').Config} */
|
|
const config = {
|
|
kit: {
|
|
adapter: adapter()
|
|
}
|
|
};
|
|
|
|
export default config;
|