Files
jasmine/artist-website/vite.config.ts
Warren dfb2dbba7c
Some checks failed
Test in latest available Safari / build (push) Failing after 6m25s
Add artist website and portfolio files with LFS
2026-05-25 13:50:38 +08:00

18 lines
369 B
TypeScript

import { defineConfig } from 'vite';
import vue from '@vitejs/plugin-vue';
// https://vitejs.dev/config/
export default defineConfig({
plugins: [vue()],
clearScreen: false,
server: {
port: 1420,
strictPort: true,
watch: {
ignored: ['**/src-tauri/**'],
},
allowedHosts: ['jasminelo.ddns.net'],
},
envPrefix: ['VITE_', 'TAURI_'],
});