-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnext.config.js
46 lines (41 loc) · 1.09 KB
/
next.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
const { parse } = require("yaml");
const fs = require("fs");
module.exports = async (phase, { defaultConfig }) => {
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
transpilePackages: ["geist"],
...defaultConfig,
};
const configYaml = fs.existsSync("./config.yaml")
? parse(await fs.promises.readFile("./config.yaml", "utf8"))
: {
maxRentals: 10,
defaultRentalTime: 7,
prolongationTime: 7,
};
const publicConfigYaml = Object.fromEntries(
Object.entries(configYaml).map(([key, value]) => [
key.startsWith("_")
? key.toUpperCase().replace("_", "")
: "NEXT_PUBLIC_" + key.toUpperCase(),
value,
])
);
const langDirs = (await fs.promises.readdir("./locales")).filter(
(f) => f !== "en"
);
return {
...nextConfig,
i18n: {
locales: ["en", ...langDirs],
defaultLocale: langDirs.includes(configYaml._defaultLanguage)
? configYaml._defaultLanguage
: "en",
},
env: {
...nextConfig.env,
...publicConfigYaml,
},
};
};