Files
Calendink/Provider/frontend/vite.config.js

16 lines
361 B
JavaScript

import { defineConfig } from 'vite'
import { svelte } from '@sveltejs/vite-plugin-svelte'
import tailwindcss from '@tailwindcss/vite'
// https://vite.dev/config/
export default defineConfig({
plugins: [
svelte(),
tailwindcss(),
],
// Resolve the W: subst drive to avoid path mismatches on Windows
resolve: {
preserveSymlinks: true,
},
})