- Set basePath to '/jovies' for proper path-based routing - Set assetPrefix to '/jovies' for static asset loading - This allows the app to work correctly under /jovies path
9 lines
166 B
JavaScript
9 lines
166 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
output: 'standalone',
|
|
basePath: '/jovies',
|
|
assetPrefix: '/jovies',
|
|
};
|
|
|
|
export default nextConfig;
|