We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aa3bf5f commit 7284eedCopy full SHA for 7284eed
2 files changed
.github/workflows/deploy.yml
@@ -33,3 +33,4 @@ jobs:
33
branch: gh-pages
34
token: ${{ secrets.GITHUB_TOKEN }}
35
clean: true
36
+ repository-name: piwi/piwi.github.io
next.config.js
@@ -3,17 +3,15 @@ const isProd = process.env.NODE_ENV === 'production';
3
4
const nextConfig = {
5
output: 'export',
6
- basePath: isProd ? '/piwi' : '',
7
- assetPrefix: isProd ? '/piwi/' : '',
+ basePath: '/piwi',
+ assetPrefix: '/piwi/',
8
images: {
9
unoptimized: true,
10
},
11
experimental: {
12
// Désactiver l'optimisation des images pour l'export statique
13
optimizePackageImports: ['framer-motion']
14
- },
15
- // Désactiver le moteur Turbopack
16
- turbo: false
+ }
17
};
18
19
module.exports = nextConfig;
0 commit comments