maintainermonth/next.config.js

16 строки
411 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
// TODO: temporary. Update when transferring the repository to the github environment.
basePath:
process.env.NODE_ENV === 'development' ? undefined : '/tmp-maintainermonth',
assetPrefix:
process.env.NODE_ENV === 'development'
? undefined
: '/tmp-maintainermonth/',
}
module.exports = nextConfig