feat: add vuejs example

This commit is contained in:
Mauricio Siu
2024-06-30 19:13:27 -06:00
parent 5a2bb25d1c
commit 99c459e044
24 changed files with 607 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
import { fileURLToPath, URL } from 'node:url'
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import vueJsx from '@vitejs/plugin-vue-jsx'
// https://vitejs.dev/config/
export default defineConfig({
plugins: [
vue(),
vueJsx(),
],
resolve: {
alias: {
'@': fileURLToPath(new URL('./src', import.meta.url))
}
}
})