mirror of
https://github.com/penpot/penpot.git
synced 2026-02-12 14:42:56 +00:00
11 lines
205 B
TypeScript
11 lines
205 B
TypeScript
import { defineConfig, mergeConfig } from "vite";
|
|
import baseConfig from "./vite.config";
|
|
|
|
export default mergeConfig(
|
|
baseConfig,
|
|
defineConfig({
|
|
base: "./",
|
|
plugins: [],
|
|
})
|
|
);
|