mirror of
https://github.com/45Drives/cockpit-navigator.git
synced 2025-08-20 09:08:30 +02:00
14 lines
247 B
JavaScript
14 lines
247 B
JavaScript
import { defineConfig } from 'vite'
|
|
import vue from '@vitejs/plugin-vue'
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
plugins: [vue()],
|
|
base: "./",
|
|
build: {
|
|
target: [
|
|
"chrome87", "edge88", "firefox78", "safari14"
|
|
]
|
|
}
|
|
})
|