File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ name : Deploy to GitHub Pages
2+
3+ on :
4+ push :
5+ branches :
6+ - main
7+ - master
8+ workflow_dispatch :
9+
10+ permissions :
11+ contents : read
12+ pages : write
13+ id-token : write
14+
15+ concurrency :
16+ group : " pages"
17+ cancel-in-progress : false
18+
19+ jobs :
20+ build :
21+ runs-on : ubuntu-latest
22+ steps :
23+ - name : Checkout
24+ uses : actions/checkout@v4
25+
26+ - name : Setup Node
27+ uses : actions/setup-node@v4
28+ with :
29+ node-version : 20
30+ cache : ' npm'
31+
32+ - name : Install dependencies
33+ run : npm ci
34+
35+ - name : Build
36+ run : npm run build
37+
38+ - name : Setup Pages
39+ uses : actions/configure-pages@v4
40+
41+ - name : Upload artifact
42+ uses : actions/upload-pages-artifact@v3
43+ with :
44+ path : ' ./dist'
45+
46+ deploy :
47+ environment :
48+ name : github-pages
49+ url : ${{ steps.deployment.outputs.page_url }}
50+ runs-on : ubuntu-latest
51+ needs : build
52+ steps :
53+ - name : Deploy to GitHub Pages
54+ id : deployment
55+ uses : actions/deploy-pages@v4
Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ import { componentTagger } from "lovable-tagger";
55
66// https://vitejs.dev/config/
77export default defineConfig ( ( { mode } ) => ( {
8+ base : "/" ,
89 server : {
910 host : "::" ,
1011 port : 8080 ,
@@ -15,4 +16,9 @@ export default defineConfig(({ mode }) => ({
1516 "@" : path . resolve ( __dirname , "./src" ) ,
1617 } ,
1718 } ,
19+ build : {
20+ outDir : "dist" ,
21+ assetsDir : "assets" ,
22+ sourcemap : false ,
23+ } ,
1824} ) ) ;
You can’t perform that action at this time.
0 commit comments