Add basic vue app

This commit is contained in:
Joey Yakimowich-Payne 2023-08-09 19:31:10 -06:00
commit 69e7cf3f3b
No known key found for this signature in database
GPG key ID: 6BFE655FA5ABD1E1
44 changed files with 3530 additions and 1217 deletions

18
vite.config.ts Normal file
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('./app', import.meta.url))
}
}
})