Skip to content

Commit b8e967e

Browse files
committed
Add prefix paths
1 parent dafffff commit b8e967e

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

.github/workflows/nextjs.yml

-4
Original file line numberDiff line numberDiff line change
@@ -76,10 +76,6 @@ jobs:
7676
${{ steps.detect-package-manager.outputs.manager }} ${{ steps.detect-package-manager.outputs.command }}
7777
- name: Build with Next.js
7878
run: ${{ steps.detect-package-manager.outputs.runner }} next build
79-
- name: No jekyll
80-
run: |
81-
touch out/.nojekyll
82-
ls -la out
8379
- name: Upload artifact
8480
uses: actions/upload-pages-artifact@v3
8581
with:

airstrip-fe/next.config.js

+2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
/** @type {import('next').NextConfig} */
22
const nextConfig = {
33
output: 'export',
4+
basePath: '/airstrip',
5+
assetPrefix: '/airstrip/',
46
};
57

68
module.exports = nextConfig;

0 commit comments

Comments
 (0)