mirror of
https://github.com/certd/certd.git
synced 2026-05-18 22:57:31 +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",
|
||
|
|
},
|
||
|
|
},
|
||
|
|
});
|