- Implemented PATCH and DELETE endpoints for bug reports. - Created user management page with user creation, display name update, password reset, and user deletion functionalities. - Added password validation and hashing for user creation and password reset. - Integrated dialogs for user actions (create, update, reset password, delete). - Configured SvelteKit with Node adapter and Vite for build process. - Set up Tailwind CSS for styling.
3 lines
122 B
JavaScript
3 lines
122 B
JavaScript
import { asClassComponent } from 'svelte/legacy';
|
|
import Root from './root.svelte';
|
|
export default asClassComponent(Root); |