mirror of
https://github.com/open-webui/open-webui
synced 2024-11-22 16:22:44 +00:00
4d3754980d
- throw a toast error when user is trying to click on `set as default` without actually choosing the model(s). - feat: added hmr for local development. use `npm run dev` and you get the hmr when debugging.
10 lines
171 B
TypeScript
10 lines
171 B
TypeScript
import { sveltekit } from '@sveltejs/kit/vite';
|
|
import { defineConfig } from 'vite';
|
|
|
|
export default defineConfig({
|
|
plugins: [sveltekit()],
|
|
server: {
|
|
hmr: true
|
|
}
|
|
});
|