Есть проект построенный на next.js
В нем есть файл next.config.js который выглядит вот так
const path = require('path')
module.exports = {
publicRuntimeConfig: {
//разный код
},
webpack(config) {
//разный код
},
}
но когда хочу добавить еще один импорт
const { withSentryConfig } = require('@sentry/nextjs')
Вся сборка ломается и при запуске npm`а выдает такую ошибку
(node:10436) Warning: Accessing non-existent property 'default' of module exports inside circular dependency
(Use `node --trace-warnings ...` to show where the warning was created)
(node:10436) Warning: Accessing non-existent property 'target' of module exports inside circular dependency
(node:10436) Warning: Accessing non-existent property 'amp' of module exports inside circular dependency
(node:10436) Warning: Accessing non-existent property 'experimental' of module exports inside circular dependency
Откуда могла взяться такая ошибка в какую сторону искать проблему?