mirror of
https://github.com/valitydev/checkout.git
synced 2024-11-06 10:35:20 +00:00
17 lines
341 B
TypeScript
17 lines
341 B
TypeScript
import { defineConfig } from 'vite';
|
|
|
|
export default defineConfig({
|
|
build: {
|
|
outDir: 'dist',
|
|
lib: {
|
|
entry: './src/initializer/index.ts',
|
|
name: 'checkout',
|
|
},
|
|
rollupOptions: {
|
|
output: {
|
|
entryFileNames: 'checkout.js',
|
|
},
|
|
},
|
|
},
|
|
});
|