mirror of
https://github.com/penpot/penpot.git
synced 2026-08-29 16:18:48 +00:00
10 lines
188 B
TypeScript
10 lines
188 B
TypeScript
import { defineConfig, mergeConfig } from "vite";
|
|
import baseConfig from "./vite.config.ts";
|
|
|
|
export default mergeConfig(
|
|
baseConfig,
|
|
defineConfig({
|
|
plugins: [],
|
|
})
|
|
);
|