Created
July 23, 2023 17:34
-
-
Save Iamsheye/fe1e5f023d8876452afe830725e032b1 to your computer and use it in GitHub Desktop.
Vite Config Multiple Pages
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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