mirror of
https://github.com/IT4Change/ocelot-website-hire.git
synced 2025-12-12 21:05:50 +00:00
14 lines
306 B
JavaScript
14 lines
306 B
JavaScript
import { defineConfig } from 'vite'
|
|
import vue from '@vitejs/plugin-vue'
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
base: '/ocelot-website-hire/',
|
|
build: {
|
|
rollupOptions: {
|
|
input: './src/main.js' // Passe den Einstiegspunkt entsprechend an
|
|
}
|
|
},
|
|
plugins: [vue()],
|
|
})
|