onedrive/next.config.js

9 lines
233 B
JavaScript
Raw Normal View History

2022-02-05 22:18:26 +00:00
const { i18n } = require('./next-i18next.config')
2021-06-22 11:58:37 +00:00
module.exports = {
2022-02-05 22:18:26 +00:00
i18n,
reactStrictMode: true,
// Required by Next i18n with API routes, otherwise API routes 404 when fetching without trailing slash
trailingSlash: true
2021-06-22 11:58:37 +00:00
}