- Added plugin base and loader for backend extensibility - Implemented application settings management with config persistence - Created Svelte-based frontend with Dashboard and Settings pages - Added API routes for plugins, tasks, and settings - Updated documentation and specifications - Improved project structure and developer tools
14 lines
372 B
JavaScript
Executable File
14 lines
372 B
JavaScript
Executable File
import { vitePreprocess } from '@sveltejs/vite-plugin-svelte'
|
|
|
|
/** @type {import("@sveltejs/vite-plugin-svelte").SvelteConfig} */
|
|
export default {
|
|
// Consult https://svelte.dev/docs#compile-time-svelte-preprocess
|
|
// for more information about preprocessors
|
|
preprocess: vitePreprocess(),
|
|
compilerOptions: {
|
|
compatibility: {
|
|
componentApi: 4,
|
|
},
|
|
},
|
|
}
|