Files
vue-flow/vite.config.app.ts
Braks 92caccfd6e update: use vue-demi again to add compatability to vue2
* add vite.config.app.ts for demo generation
2021-07-10 11:51:12 +02:00

17 lines
325 B
TypeScript

import { defineConfig } from 'vite';
import vue from '@vitejs/plugin-vue';
import vueJsx from '@vitejs/plugin-vue-jsx';
// https://vitejs.dev/config/
export default defineConfig({
build: {
outDir: 'build'
},
plugins: [
vue(),
vueJsx({
// options are passed on to @vue/babel-plugin-jsx
})
]
});