mirror of
https://github.com/webstudio-is/webstudio.git
synced 2025-03-15 09:45:09 +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"],
|
||
|
},
|
||
|
});
|