2022-03-14 17:03:26 +03:00
|
|
|
/** @type {import('next').NextConfig} */
|
2022-03-21 17:06:21 +03:00
|
|
|
|
2022-03-14 17:03:26 +03:00
|
|
|
const nextConfig = {
|
|
|
|
reactStrictMode: true,
|
2022-03-21 17:06:21 +03:00
|
|
|
|
|
|
|
// TODO: temporary. Update when transferring the repository to the github environment.
|
|
|
|
basePath:
|
|
|
|
process.env.NODE_ENV === 'development' ? undefined : '/tmp-maintainermonth',
|
2022-03-21 17:12:55 +03:00
|
|
|
assetPrefix:
|
|
|
|
process.env.NODE_ENV === 'development'
|
|
|
|
? undefined
|
|
|
|
: '/tmp-maintainermonth/',
|
2022-03-14 17:03:26 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = nextConfig
|