UNPKG

@urso/core

Version:
24 lines (22 loc) 463 B
import { defineConfig } from 'vite'; export default defineConfig({ plugins: [], build: { minify: false, outDir: 'build', emptyOutDir: true, lib: { entry: './src/js/index.js', name: 'Urso', fileName: 'js/index', formats: ['es'], sourcemap: true, }, rollupOptions: { external: [], // add external dependencies if needed output: { inlineDynamicImports: true } }, } });