bootstrap-table
Version:
An extended table to integration with some of the most widely used CSS frameworks. (Supports Bootstrap, Semantic UI, Bulma, Material Design, Foundation)
26 lines (24 loc) • 455 B
JavaScript
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
export default defineConfig({
define: {
'process.env': {}
},
build: {
lib: {
entry: 'src/vue/index.js',
name: 'BootstrapTable',
fileName: 'bootstrap-table-vue',
formats: ['es', 'umd']
},
rollupOptions: {
output: {
globals: {
vue: 'Vue'
}
}
},
emptyOutDir: false
},
plugins: [vue()]
})