class-profile-2023/next.config.js

12 lines
254 B
JavaScript
Raw Permalink Normal View History

2024-04-03 10:54:21 -04:00
const basePath = process.env.NEXT_PUBLIC_BASE_PATH || "";
/** @type {import('next').NextConfig} */
const nextConfig = {
2024-04-03 11:44:11 -04:00
output: "export",
2024-04-03 10:54:21 -04:00
basePath,
assetPrefix: `${basePath}/`,
publicRuntimeConfig: { basePath },
};
module.exports = nextConfig;