We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f1dc054 commit 3e0a1e9Copy full SHA for 3e0a1e9
next.config.js
@@ -1,12 +1,9 @@
1
-// Import the base path from the basePath.js file
2
-const BASE_PATH = require("./basePath");
3
-
4
/** @type {import('next').NextConfig} */
5
const nextConfig = {
6
compress: true,
7
output: "export",
8
- basePath: BASE_PATH, // Use the imported base path
9
- assetPrefix: `${BASE_PATH}/`,
+ basePath: "/Blog",
+ assetPrefix: "/Blog/",
10
};
11
12
-export default nextConfig;
+module.exports = nextConfig;
0 commit comments