We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 68cf9ff commit 0b0380fCopy full SHA for 0b0380f
.github/workflows/build-and-preview-site.yml
@@ -20,10 +20,12 @@ jobs:
20
uses: actions/checkout@v6
21
22
- name: Install and Build 🔧
23
+ env:
24
+ PATH_PREFIX: /recognition/pr-preview/pr-${{ github.event.pull_request.number }}
25
run: |
26
npm install
27
node -v
- npm run build
28
+ npm run build -- --prefix-paths
29
30
- name: Broken Link Check 🔗
31
uses: technote-space/broken-link-checker-action@v2
gatsby-config.js
@@ -2,6 +2,7 @@
2
* @type {import('gatsby').GatsbyConfig}
3
*/
4
module.exports = {
5
+ pathPrefix: process.env.PATH_PREFIX,
6
siteMetadata: {
7
title: `Layer5 Recognition Program`,
8
description: `Showcasing Your Achievements as a User and a Contributor`,
0 commit comments