Engine/apps/frontend/vite.config.ts
Jo 0db7875bc1 [backend/frontend/shared] server-side plugins and basic spa frontend
feat(backend): finish server-side plugin system
feat(frontend): implement basic frontend with typescript, vite, vue and vue-router
feat(shared/plugins): implement example-plugin, to showcase the server-side plugin implementation
feat(shared/plugins): implement base file-structure for client-side plugins
2024-06-28 14:56:29 +02:00

13 lines
No EOL
265 B
TypeScript

import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import path from 'node:path'
// https://vitejs.dev/config/
export default defineConfig({
resolve: {
alias: {
'@': path.resolve(__dirname, './src')
}
},
plugins: [vue()]
})