feat: Vue 3 Basis mit TailwindCSS, PrimeVUE, i18n und Dark/Light Mode
- Vue 3 + Vite Setup - TailwindCSS für Styling - PrimeVUE Komponenten - vue-i18n (DE/EN) - Dark/Light Mode Toggle - Responsive Landingpage - Docker-ready
This commit is contained in:
11
vite.config.js
Normal file
11
vite.config.js
Normal file
@@ -0,0 +1,11 @@
|
||||
import { defineConfig } from 'vite'
|
||||
import vue from '@vitejs/plugin-vue'
|
||||
|
||||
export default defineConfig({
|
||||
plugins: [vue()],
|
||||
resolve: {
|
||||
alias: {
|
||||
'@': '/src'
|
||||
}
|
||||
}
|
||||
})
|
||||
Reference in New Issue
Block a user