mirror of
https://github.com/betagouv/mon-entreprise
synced 2025-02-08 23:25:02 +00:00
13 lines
281 B
TypeScript
13 lines
281 B
TypeScript
import { defineConfig } from 'vite'
|
|
|
|
export default defineConfig({
|
|
build: {
|
|
lib: {
|
|
entry: './source/iframe-integration-script.js',
|
|
name: 'monEntrepriseIframe',
|
|
formats: ['iife'],
|
|
fileName: (f) => 'simulateur-iframe-integration.js',
|
|
},
|
|
emptyOutDir: false,
|
|
},
|
|
})
|