mirror of
https://github.com/tenrok/OverlayScrollbars.git
synced 2026-06-18 17:40:36 +03:00
14 lines
328 B
JavaScript
14 lines
328 B
JavaScript
import { fileURLToPath, URL } from 'node:url';
|
|
import { defineConfig } from 'vitest/config';
|
|
import { svelte } from '@sveltejs/vite-plugin-svelte';
|
|
|
|
// only used for tests
|
|
export default defineConfig({
|
|
plugins: [svelte()],
|
|
resolve: {
|
|
alias: {
|
|
'~': fileURLToPath(new URL('./src', import.meta.url)),
|
|
},
|
|
},
|
|
});
|