I’m trying to make Vite build my files and output them into the dist
folder every time I save/make changes on to my files during development.
How would I do that?
Here is my vite.config.development.js
file:
import { defineConfig } from "vite";
export default defineConfig({
base: "./",
build: {
rollupOptions: {
output: {
assetFileNames: "assets/[name].[ext]",
chunkFileNames: "assets/[name].[ext]",
entryFileNames: "assets/[name].js",
},
},
write: true,
},
});
Here is my scripts in packagae.json
:
"frontend-dev": "vite --config vite.config.development.js",
It does the usual localhost:3000
thing, but it does not build my files and put them in the dist
folder when I make changes to my source code.
Currently, I have to run a vite build
npm script every time which takes a lot of time.