20 lines
280 B
JavaScript
20 lines
280 B
JavaScript
import vueJsx from '@vitejs/plugin-vue-jsx';
|
|
|
|
export default {
|
|
base: './',
|
|
resolve: {
|
|
dedupe: [ 'vue' ],
|
|
},
|
|
plugins: [
|
|
vueJsx({}),
|
|
],
|
|
esbuild: {
|
|
jsxFactory: 'h',
|
|
jsxFragment: 'Fragment',
|
|
},
|
|
build: {
|
|
sourcemap: true,
|
|
outDir: 'docs',
|
|
},
|
|
};
|