chore: fix workflow on check (#577)

* deps: add @sentry/cli

* deps: remove @sentry/cli

* chore: set dry run on ci

* chore: remove dryRun
This commit is contained in:
SKINMAKER 2023-06-24 11:39:34 +09:00 committed by GitHub
parent fcffa8a729
commit 72fbcdf6c9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -38,6 +38,10 @@ const NextConfig = {
permanent: true
}
]
}
},
sentry: process.env.CI ? {
disableServerWebpackPlugin: true,
disableClientWebpackPlugin: true,
} : {}
}
module.exports = withSentryConfig(withPWA(NextConfig))