This repository was archived by the owner on Dec 16, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +11
-8
lines changed
src/templates/Vue InstantSearch with Vue 3 Expand file tree Collapse file tree 3 files changed +11
-8
lines changed Original file line number Diff line number Diff line change @@ -8304,13 +8304,14 @@ app.mount('#app');"
83048304` ;
83058305
83068306exports [` Templates Vue InstantSearch with Vue 3 File content: vite.config.js 1` ] = `
8307- "import { defineConfig } from 'vite'
8308- import vue from '@vitejs/plugin-vue'
8307+ "import { defineConfig } from 'vite';
8308+ import vue from '@vitejs/plugin-vue';
8309+ import vueJsx from '@vitejs/plugin-vue-jsx';
83098310
83108311// https://vitejs.dev/config/
83118312export default defineConfig({
8312- plugins : [vue ()]
8313- } )"
8313+ plugins : [vue (), vueJsx ()],
8314+ } ); "
83148315` ;
83158316
83168317exports [` Templates Vue InstantSearch with Vue 3 Folder structure: contains the right files 1` ] = `
Original file line number Diff line number Diff line change 1414 },
1515 "devDependencies" : {
1616 "@vitejs/plugin-vue" : " 2.2.0" ,
17+ "@vitejs/plugin-vue-jsx" : " 1.3.7" ,
1718 "vite" : " 2.8.0"
1819 }
1920}
Original file line number Diff line number Diff line change 1- import { defineConfig } from 'vite'
2- import vue from '@vitejs/plugin-vue'
1+ import { defineConfig } from 'vite' ;
2+ import vue from '@vitejs/plugin-vue' ;
3+ import vueJsx from '@vitejs/plugin-vue-jsx' ;
34
45// https://vitejs.dev/config/
56export default defineConfig ( {
6- plugins : [ vue ( ) ]
7- } )
7+ plugins : [ vue ( ) , vueJsx ( ) ] ,
8+ } ) ;
You can’t perform that action at this time.
0 commit comments