mirror of
https://github.com/45Drives/cockpit-navigator.git
synced 2025-08-20 17:18:36 +02:00
24 lines
415 B
TypeScript
24 lines
415 B
TypeScript
/// <reference types="vitest/config" />
|
|
import { defineConfig } from 'vite'
|
|
import vue from '@vitejs/plugin-vue'
|
|
import path from 'path'
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
plugins: [vue()],
|
|
base: "./",
|
|
resolve: {
|
|
alias: {
|
|
'@': path.resolve(__dirname, './src')
|
|
},
|
|
},
|
|
build: {
|
|
target: [
|
|
"chrome87", "edge88", "firefox78", "safari14"
|
|
],
|
|
},
|
|
test: {
|
|
globals: true,
|
|
}
|
|
})
|