mirror of
https://github.com/webstudio-is/webstudio.git
synced 2025-03-14 09:57:02 +00:00
9 lines
168 B
TypeScript
9 lines
168 B
TypeScript
import { defineConfig } from "vite";
|
|
|
|
export default defineConfig({
|
|
// resolve only webstudio condition in tests
|
|
resolve: {
|
|
conditions: ["webstudio"],
|
|
},
|
|
});
|