0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-01-09 08:20:45 -05:00
penpot/frontend/vite.config.js
2023-12-28 12:14:06 +01:00

18 lines
392 B
JavaScript

import { defineConfig } from "vite";
import { configDefaults } from 'vitest/config'
import { resolve } from "path";
// https://vitejs.dev/config/
export default defineConfig({
test: {
exclude: [...configDefaults.exclude, 'target/**', 'resources/**'],
environment: 'jsdom'
},
resolve: {
alias: {
"@target": resolve(__dirname, "./target/storybook"),
},
},
});