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