mirror of
https://github.com/brianc/node-postgres.git
synced 2025-12-08 20:16:25 +00:00
13 lines
213 B
JavaScript
13 lines
213 B
JavaScript
import { defineConfig } from 'vite'
|
|
|
|
export default defineConfig({
|
|
build: {
|
|
emptyOutDir: false,
|
|
lib: {
|
|
entry: './src/index.mjs',
|
|
fileName: 'vite-empty',
|
|
formats: ['es'],
|
|
},
|
|
},
|
|
})
|