mirror of
https://github.com/penpot/penpot.git
synced 2026-03-20 09:23:47 +00:00
* ✨ Add core changes for mcp server * ✨ Changes to plugins-runtime to add mcp extensions * ✨ Changes to MCP plugin * ✨ Changes post-review and ci fixes
10 lines
185 B
TypeScript
10 lines
185 B
TypeScript
import { defineConfig, mergeConfig } from "vite";
|
|
import baseConfig from "./vite.config";
|
|
|
|
export default mergeConfig(
|
|
baseConfig,
|
|
defineConfig({
|
|
plugins: [],
|
|
})
|
|
);
|