checkout/vite.config.checkout.ts

17 lines
341 B
TypeScript
Raw Permalink Normal View History

2023-07-31 12:13:49 +00:00
import { defineConfig } from 'vite';
export default defineConfig({
build: {
outDir: 'dist',
lib: {
entry: './src/initializer/index.ts',
name: 'checkout',
2023-07-31 12:13:49 +00:00
},
rollupOptions: {
output: {
entryFileNames: 'checkout.js',
},
},
},
2023-07-31 12:13:49 +00:00
});