inital push

This commit is contained in:
caranicas
2022-09-14 10:48:46 -04:00
parent 1d88a5b42e
commit 34aa60d47b
49 changed files with 7269 additions and 7 deletions

View File

@ -0,0 +1,24 @@
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]`
}
}
},
})