Add Vue.js with TypeScript support

This commit is contained in:
2024-09-03 13:37:46 +02:00
parent 002493c0c6
commit e607a09631
10 changed files with 1221 additions and 0 deletions

19
software/vite.config.ts Normal file
View File

@@ -0,0 +1,19 @@
import { resolve } from "path"
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
// https://vitejs.dev/config/
export default defineConfig({
plugins: [
vue(),
],
resolve: {
alias: {
'@': resolve(__dirname, './src')
}
},
build: {
outDir: 'build/vite',
emptyOutDir: true
}
})