import { defineConfig } from 'vite' // https://vitejs.dev/config/ export default defineConfig({ clearScreen: false, server: { watch: { ignored: [ "**/*.fs" // Don't watch F# files ] }, }, build: { rollupOptions: { output: { // Remove hash from output so we can copy the file // to the content root of the web app entryFileNames: `[name].js`, // chunkFileNames: `[name].js`, // assetFileNames: `[name].[ext]` } } } })