mirror of
https://github.com/beak-insights/felicity-lims.git
synced 2025-02-23 00:12:54 +08:00
12 lines
304 B
JavaScript
12 lines
304 B
JavaScript
|
import vue from '@vitejs/plugin-vue';
|
||
|
import { defineConfig } from 'vite';
|
||
|
import tsConfigPaths from 'vite-tsconfig-paths';
|
||
|
import vueJsx from '@vitejs/plugin-vue-jsx';
|
||
|
|
||
|
export default defineConfig({
|
||
|
plugins: [tsConfigPaths(), vue(), vueJsx()], // ,
|
||
|
build: {
|
||
|
target: 'esnext',
|
||
|
},
|
||
|
});
|