open-webui/vite.config.ts

10 lines
222 B
TypeScript
Raw Normal View History

2023-10-08 22:38:42 +00:00
import { sveltekit } from '@sveltejs/kit/vite';
import { defineConfig } from 'vite';
export default defineConfig({
2024-02-22 01:10:27 +00:00
plugins: [sveltekit()],
define: {
APP_VERSION: JSON.stringify(process.env.npm_package_version)
}
2023-10-08 22:38:42 +00:00
});