schlechtenburg/vite.config.js

12 lines
168 B
JavaScript
Raw Normal View History

2021-02-22 12:35:56 +00:00
import vueJsx from '@vitejs/plugin-vue-jsx';
export default {
plugins: [
vueJsx({}),
],
esbuild: {
jsxFactory: 'h',
jsxFragment: 'Fragment',
},
2020-12-30 13:34:23 +00:00
};