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