We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a703b61 commit 6fb66e7Copy full SHA for 6fb66e7
2 files changed
package.json
@@ -3,13 +3,14 @@
3
"private": true,
4
"version": "0.0.0",
5
"type": "module",
6
- "homepage": "https://joacohbc.github.io/study-builder",
+ "homepage": "https://joacohbc.github.io/study-builder/",
7
"scripts": {
8
"dev": "vite",
9
"build": "vite build",
10
"lint": "eslint .",
11
"preview": "vite preview",
12
- "deploy": "npm run build && gh-pages -d dist"
+ "predeploy": "npm run build",
13
+ "deploy": "gh-pages -d dist"
14
},
15
"dependencies": {
16
"@tailwindcss/vite": "^4.1.4",
vite.config.js
@@ -5,5 +5,5 @@ import tailwindcss from '@tailwindcss/vite'
// https://vite.dev/config/
export default defineConfig({
plugins: [react(), tailwindcss()],
- base: 'https://joacohbc.github.io/study-builder'
+ base: '/study-builder'
})
0 commit comments