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