15 lines
370 B
JavaScript
15 lines
370 B
JavaScript
import { defineConfig } from 'vite'
|
|
import vue from '@vitejs/plugin-vue'
|
|
|
|
// https://vite.dev/config/
|
|
export default defineConfig({
|
|
plugins: [vue()],
|
|
resolve: {
|
|
alias: [{ find: "@", replacement: "/src" }],
|
|
},
|
|
server: {
|
|
host: true, // Hört auf allen Netzwerk-Interfaces, kein localhost notwendig
|
|
port: 5174 // optional, Standardport für Vite
|
|
}
|
|
})
|