Skip to content

Commit 9b6242c

Browse files
committed
comforterpdocsnuxt
1 parent afa211d commit 9b6242c

5 files changed

Lines changed: 12 additions & 12 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
# This step runs your "generate" script: "nuxt prepare && nuxt generate www"
3636
# This command is responsible for generating files into 'www/.output/public'
3737
env:
38-
NUXT_APP_BASE_URL: /comforterpdocsnuxt/ # Setting the BASE_URL environment variable for Nuxt
38+
NUXT_APP_BASE_URL: /comforterpdocs/ # Setting the BASE_URL environment variable for Nuxt
3939
run: pnpm run generate
4040

4141
- name: Deploy to GitHub Pages

deploy_last.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
# Set the environment variable and run the generate script
2626
- name: Build and Generate Static Files
2727
# **IMPORTANT:** Replace 'repository-name' with your actual repository name
28-
run: BASE_URL=/comforterpdocsnuxt/ npm run generate
28+
run: BASE_URL=/comforterpdocs/ npm run generate
2929

3030
- name: Deploy to GitHub Pages
3131
uses: peaceiris/actions-gh-pages@v3

nuxt.config.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import tailwindcss from '@tailwindcss/vite';
44

55
const currentDir = dirname(fileURLToPath(import.meta.url));
66

7-
//const base = process.env.NUXT_APP_BASE_URL || '/comforterpdocsnuxt/';
7+
//const base = process.env.NUXT_APP_BASE_URL || '/comforterpdocs/';
88

99
//console.log('>>> BASE_URL at build time:', process.env.BASE_URL);
1010
//console.log('>>> NUXT_APP_BASE_URL at build time:', process.env.NUXT_APP_BASE_URL);
@@ -19,7 +19,7 @@ export default defineNuxtConfig({
1919
},
2020
},
2121
app: {
22-
//baseURL: process.env.BASE_URL || '/comforterpdocsnuxt/',
22+
//baseURL: process.env.BASE_URL || '/comforterpdocs/',
2323
baseURL: process.env.NUXT_APP_BASE_URL ?? '/',
2424
head: {
2525
link: [

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
"dev": "nuxt prepare && nuxt dev www",
4141
"generate": "nuxt prepare && nuxt generate www",
4242
"generate2": "nuxt prepare && nuxt generate www",
43-
"generate3": "nuxt prepare && NUXT_APP_BASE_URL=/comforterpdocsnuxt/ nuxt generate --preset github_pages || echo 'Ignoring prerender errors'",
43+
"generate3": "nuxt prepare && NUXT_APP_BASE_URL=/comforterpdocs/ nuxt generate --preset github_pages || echo 'Ignoring prerender errors'",
4444
"preview": "nuxt prepare && nuxt preview www",
4545
"typecheck": "nuxt prepare && nuxt typecheck",
4646
"lint": "eslint .",

www/app.config.ts

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ export default defineAppConfig({
5252
target: '_self',
5353
showLinkIcon: false,
5454
},
55-
/*{
55+
/* {
5656
title: 'Bookings',
5757
to: '/comfortbookings',
5858
target: '_self',
@@ -63,7 +63,7 @@ export default defineAppConfig({
6363
to: '/comfortevents',
6464
target: '_self',
6565
showLinkIcon: false,
66-
},*/
66+
}, */
6767
],
6868
links: [
6969
/* {
@@ -73,7 +73,7 @@ export default defineAppConfig({
7373
}, */
7474
{
7575
icon: 'lucide:github',
76-
to: 'https://github.com/codeboxrcodehub/comforterpdocsnuxt',
76+
to: 'https://github.com/codeboxrcodehub/comforterpdocs',
7777
target: '_blank',
7878
},
7979
],
@@ -357,7 +357,7 @@ export default defineAppConfig({
357357
}, */
358358
{
359359
icon: 'lucide:github',
360-
to: 'https://github.com/codeboxrcodehub/comforterpdocsnuxt',
360+
to: 'https://github.com/codeboxrcodehub/comforterpdocs',
361361
target: '_blank',
362362
},
363363
],
@@ -371,14 +371,14 @@ export default defineAppConfig({
371371
{
372372
title: 'Star on GitHub',
373373
icon: 'lucide:star',
374-
to: 'https://github.com/codeboxrcodehub/comforterpdocsnuxt',
374+
to: 'https://github.com/codeboxrcodehub/comforterpdocs',
375375
target: '_blank',
376376
showLinkIcon: true,
377377
},
378378
{
379379
title: 'Create Issues',
380380
icon: 'lucide:circle-dot',
381-
to: 'https://github.com/codeboxrcodehub/comforterpdocsnuxt',
381+
to: 'https://github.com/codeboxrcodehub/comforterpdocs',
382382
target: '_blank',
383383
showLinkIcon: true,
384384
},
@@ -401,7 +401,7 @@ export default defineAppConfig({
401401
},
402402
{
403403
icon: 'lucide:github',
404-
to: 'https://github.com/codeboxrcodehub/comforterpdocsnuxt',
404+
to: 'https://github.com/codeboxrcodehub/comforterpdocs',
405405
target: '_blank',
406406
},
407407
],

0 commit comments

Comments
 (0)