mirror of
https://github.com/penpot/penpot.git
synced 2025-01-09 00:10:11 -05:00
18 lines
392 B
JavaScript
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"),
|
|
},
|
|
},
|
|
});
|