File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed
Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 2727 run : npm ci
2828
2929 - name : Build site with Eleventy
30- run : npm run deploy-prod # Ensure this script is set up in package.json
30+ run : npm run deploy-dev # Ensure this script is set up in package.json
3131
3232 - name : Upload artifact for deployment
3333 id : dep
Original file line number Diff line number Diff line change 55 "scripts" : {
66 "serve" : " ELEVENTY_ENV=dev eleventy --serve" ,
77 "deploy" : " eleventy" ,
8- "deploy-prod " : " ELEVENTY_ENV=prod eleventy"
8+ "deploy-dev " : " ELEVENTY_ENV=dev eleventy"
99 },
1010 "author" : " ttntm" ,
1111 "license" : " MIT" ,
Original file line number Diff line number Diff line change 1- const isPord = process . env . ELEVENTY_ENV === 'prod '
1+ const isDev = process . env . ELEVENTY_ENV === 'dev '
22
33module . exports = {
4- baseUrl : isPord
4+ baseUrl : isDev
55 ? '/inpycon2025/'
6- : '/'
6+ : '/2025/ '
77}
You can’t perform that action at this time.
0 commit comments