mirror of
https://github.com/certd/certd.git
synced 2025-11-25 09:10:11 +08:00
12 lines
203 B
TypeScript
12 lines
203 B
TypeScript
import { defineConfig } from "vite";
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
plugins: [],
|
|
build: {
|
|
lib: {
|
|
entry: "src/index.ts",
|
|
name: "pipeline",
|
|
},
|
|
},
|
|
});
|