Skip to content

Commit 3c9b0c8

Browse files
committed
import more bauanleitungen
1 parent c01d61e commit 3c9b0c8

File tree

141 files changed

+364
-73
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

141 files changed

+364
-73
lines changed

next.config.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import nextra from "nextra";
2+
import { locales, defaultLocale } from "./src/i18n";
23

34
const withNextra = nextra({
45
contentDirBasePath: "/"
@@ -16,10 +17,11 @@ export default withNextra({
1617
ignoreDuringBuilds: true
1718
},
1819
i18n: {
19-
locales: ["de", "en"],
20-
defaultLocale: "de"
20+
locales,
21+
defaultLocale
2122
},
2223
output: "export",
24+
trailingSlash: true,
2325
images: {
2426
unoptimized: true
2527
},

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
"lint": "next lint",
1111
"export": "next export",
1212
"type-check": "tsc",
13+
"clean": "rm -rf .next out",
1314
"postbuild": "pagefind --site .next/server/app --output-path out/_pagefind",
1415
"deploy": "gh-pages -t -d out"
1516
},
93.4 KB
172 KB
91.1 KB
77.1 KB
62.2 KB
50.8 KB
74.3 KB
126 KB

0 commit comments

Comments
 (0)