7 lines
144 B
TypeScript
7 lines
144 B
TypeScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
basePath: "/offers",
|
|
assetPrefix: "/offers",
|
|
};
|
|
|
|
module.exports = nextConfig;
|