mirror of
https://github.com/kestra-io/kestra.git
synced 2025-12-19 18:05:41 -05:00
Co-authored-by: GitHub Action <actions@github.com> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Bart Ledoux <bledoux@kestra.io>
22 lines
440 B
JavaScript
22 lines
440 B
JavaScript
import {defineConfig} from "vite";
|
|
import vue from "@vitejs/plugin-vue";
|
|
|
|
import viteConfig from "./vite.config.js";
|
|
|
|
export default defineConfig({
|
|
plugins: [
|
|
vue(),
|
|
],
|
|
resolve: {
|
|
alias: {
|
|
...viteConfig.resolve.alias,
|
|
},
|
|
},
|
|
test: {
|
|
projects: [".storybook/vitest.config.js", "./vitest.config.unit.js"],
|
|
},
|
|
define: {
|
|
"window.KESTRA_BASE_PATH": "/ui/",
|
|
},
|
|
})
|