We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
viteConfigFile
I'm running into an issue where if I configure vite-express with the following everything works perfectly when I load localhost
ViteExpress.config({ inlineViteConfig: { root: "ui", base: "", }, });
But if I do the following localhost is a blank page with the text Cannot GET /
Cannot GET /
ViteExpress.config({ viteConfigFile: "server/vite.config.js", });
Where server/vite.config.js contains:
server/vite.config.js
import { defineConfig } from "vite"; export default defineConfig({ root: "ui", base: "", });
Is this intended behavior? Am I doing something wrong?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I'm running into an issue where if I configure vite-express with the following everything works perfectly when I load localhost
But if I do the following localhost is a blank page with the text
Cannot GET /
Where
server/vite.config.js
contains:Is this intended behavior? Am I doing something wrong?
The text was updated successfully, but these errors were encountered: