mirror of
https://github.com/open-webui/open-webui
synced 2024-11-06 08:56:39 +00:00
10 lines
222 B
TypeScript
10 lines
222 B
TypeScript
import { sveltekit } from '@sveltejs/kit/vite';
|
|
import { defineConfig } from 'vite';
|
|
|
|
export default defineConfig({
|
|
plugins: [sveltekit()],
|
|
define: {
|
|
APP_VERSION: JSON.stringify(process.env.npm_package_version)
|
|
}
|
|
});
|