What is a good file structure to have with Vite?
I am using Vite to easily run tailwind and other npm packages in my vanilla HTML and JavaScript. This is what I have now: Current file structure And this is my vite.config.js const { resolve } = require("path"); const { defineConfig } = require("vite"); module.exports = defineConfig({ build: { rollupOptions: { input: { main: resolve(__dirname,… Read More What is a good file structure to have with Vite?