2023-04-03 17:47:41 -07:00
|
|
|
import { defineConfig } from 'vite';
|
2024-03-25 17:02:54 -07:00
|
|
|
// import fs from 'vite-plugin-fs';
|
2023-03-28 11:54:52 -07:00
|
|
|
|
|
|
|
export default defineConfig({
|
2023-04-10 14:09:49 -07:00
|
|
|
plugins: [/*fs()*/],
|
2023-04-10 14:18:35 -07:00
|
|
|
server: { host: '0.0.0.0', port: 8000 },
|
2023-03-28 11:54:52 -07:00
|
|
|
clearScreen: false,
|
2024-03-25 17:02:54 -07:00
|
|
|
build: {
|
|
|
|
minify: 'esbuild',
|
|
|
|
},
|
|
|
|
esbuild: {
|
|
|
|
keepNames: true,
|
|
|
|
}
|
2023-03-28 11:54:52 -07:00
|
|
|
})
|