mirror of
https://github.com/easydiffusion/easydiffusion.git
synced 2024-12-02 13:15:20 +01:00
25 lines
542 B
TypeScript
25 lines
542 B
TypeScript
import { defineConfig } from 'vite'
|
|
import react from '@vitejs/plugin-react'
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
plugins: [react()],
|
|
server: {
|
|
port: 9001,
|
|
},
|
|
build: {
|
|
// make sure everythign is in the same directory
|
|
outDir: '../dist',
|
|
rollupOptions: {
|
|
output: {
|
|
// dont hash the file names
|
|
// maybe once we update the python server?
|
|
entryFileNames: `[name].js`,
|
|
chunkFileNames: `[name].js`,
|
|
assetFileNames: `[name].[ext]`
|
|
}
|
|
}
|
|
},
|
|
|
|
})
|