We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dafffff commit b8e967eCopy full SHA for b8e967e
.github/workflows/nextjs.yml
@@ -76,10 +76,6 @@ jobs:
76
${{ steps.detect-package-manager.outputs.manager }} ${{ steps.detect-package-manager.outputs.command }}
77
- name: Build with Next.js
78
run: ${{ steps.detect-package-manager.outputs.runner }} next build
79
- - name: No jekyll
80
- run: |
81
- touch out/.nojekyll
82
- ls -la out
83
- name: Upload artifact
84
uses: actions/upload-pages-artifact@v3
85
with:
airstrip-fe/next.config.js
@@ -1,6 +1,8 @@
1
/** @type {import('next').NextConfig} */
2
const nextConfig = {
3
output: 'export',
4
+ basePath: '/airstrip',
5
+ assetPrefix: '/airstrip/',
6
};
7
8
module.exports = nextConfig;
0 commit comments