Skip to content

Commit f8308cf

Browse files
committed
use next.config.js
1 parent 99a707d commit f8308cf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

next.config.mjs renamed to next.config.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/** @type {import('next').NextConfig} */
2-
import redirects from "./redirects.json" assert { type: "json" };
2+
const redirects = require("./redirects.json");
33

44
const nextConfig = {
55
reactStrictMode: true,
@@ -10,4 +10,4 @@ const nextConfig = {
1010
},
1111
};
1212

13-
export default nextConfig;
13+
module.exports = nextConfig;

0 commit comments

Comments
 (0)