Files
medusa-store/www/apps/ui/next.config.js

10 lines
251 B
JavaScript

const { withContentlayer } = require("next-contentlayer")
/** @type {import('next').NextConfig} */
const nextConfig = {
basePath: process.env.NEXT_PUBLIC_BASE_PATH || "/ui",
reactStrictMode: true,
}
module.exports = withContentlayer(nextConfig)