Skip to content

Instantly share code, notes, and snippets.

@Iamsheye
Created July 23, 2023 17:34
Show Gist options
  • Save Iamsheye/fe1e5f023d8876452afe830725e032b1 to your computer and use it in GitHub Desktop.
Save Iamsheye/fe1e5f023d8876452afe830725e032b1 to your computer and use it in GitHub Desktop.
Vite Config Multiple Pages
import { resolve } from "path";
export default {
build: {
rollupOptions: {
input: {
indexPage: resolve(__dirname, "index.html"),
},
},
},
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment