We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 44d7ebb commit beded11Copy full SHA for beded11
index.html
src/.github/workflows/deploy.yml
src/index.html
@@ -0,0 +1,15 @@
1
+<!doctype html>
2
+<html lang="en">
3
+
4
+<head>
5
+ <meta charset="UTF-8" />
6
+ <meta name="viewport" content="width=device-width, initial-scale=1.0" />
7
+ <title>Neofound</title>
8
+</head>
9
10
+<body>
11
+ <div id="root"></div>
12
+ <script type="module" src="./main.jsx"></script>
13
+</body>
14
15
+</html>
vite.config.js
@@ -3,6 +3,9 @@ import react from "@vitejs/plugin-react";
// Deployed on root at neofound.org, so base = "/"
export default defineConfig({
- plugins: [react()],
- base: "/"
+ plugins: [react()],
+ root: "src",
+ build: {
+ outDir: "../dist",
+ },
});
0 commit comments