This commit is contained in:
Yoann Chaudet
2022-07-19 16:27:57 -07:00
parent 69fea3d62e
commit 53eec1a8cc
13 changed files with 13 additions and 54 deletions
-8
View File
@@ -1,8 +0,0 @@
import {resolve} from 'path'
export default {
alias: {
style: resolve(__dirname, './assets/style')
},
pathPrefix: '/prefix' /* test */
}
-3
View File
@@ -1,3 +0,0 @@
module.exports = {
pathPrefix: '/prefix'
}
-8
View File
@@ -1,8 +0,0 @@
import {resolve} from 'path'
export default {
alias: {
style: resolve(__dirname, './assets/style')
},
basePath: '/gh-pages-test' /* test */
}
-3
View File
@@ -1,3 +0,0 @@
module.exports = {
basePath: '/gh-pages-test' /* test */
}
-1
View File
@@ -1 +0,0 @@
module.exports = {}
+1 -1
View File
@@ -1,3 +1,3 @@
// Default Pages configuration for Next
const nextConfig = { basePath: "/docs/" }
const nextConfig = { basePath: "/docs" }
module.exports = nextConfig
+1 -1
View File
@@ -1,6 +1,6 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
basePath: "/docs/",
basePath: "/docs",
reactStrictMode: true,
swcMinify: true,
}
-11
View File
@@ -1,11 +0,0 @@
import {resolve} from 'path'
export default {
alias: {
style: resolve(__dirname, './assets/style')
},
target: 'static',
router: {
base: 'some/path'
}
}
-8
View File
@@ -1,8 +0,0 @@
import {resolve} from 'path'
export default {
alias: {
style: resolve(__dirname, './assets/style')
},
target: 'static'
}
-9
View File
@@ -1,9 +0,0 @@
module.exports = {
alias: {
style: resolve(__dirname, './assets/style')
},
target: 'static',
router: {
base: 'some/path'
}
}