Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
fs-eire committed Jan 6, 2025
1 parent 649f81e commit cbd1ea8
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions js/web/test/e2e/exports/testcases/vite-default/src/main.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { createApp } from 'vue'
import './style.css'
import App from './App.vue'
import { createApp } from 'vue';
import './style.css';
import App from './App.vue';

createApp(App).mount('#app')
createApp(App).mount('#app');
6 changes: 3 additions & 3 deletions js/web/test/e2e/exports/testcases/vite-default/vite.config.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import { defineConfig } from 'vite';
import vue from '@vitejs/plugin-vue';

// https://vite.dev/config/
export default defineConfig({
plugins: [vue()],
})
});

0 comments on commit cbd1ea8

Please sign in to comment.