We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I resolve this issue in my project to make these changes.
first I go to https://sentry.io/settings/masaar/ in setting top organization slug, then copy organization slug and add org: __SLUG__ line
https://sentry.io/settings/masaar/
organization slug
org: __SLUG__
config.plugins.push( new SentryCliPlugin({ urlPrefix: SENTRY_PREFIX, rewrite: true, org: '__SLUG__', cleanArtifacts: true, release: `com.iklix.klix@${appVersion}+${buildNumber}`, dist: `${buildNumber}.${platform}`, ignoreFile: '.sentrycliignore', include: [dist, join(dist, SOURCEMAP_REL_DIR)], }) );
then I get this error error: A project slug is required. then I resolve this error using to add org: __SLUG__ line in
error: A project slug is required
config.plugins.push( new webpack.SourceMapDevToolPlugin({ org: '__SLUG__', append: `\n//# sourceMappingURL=${SENTRY_PREFIX}[name].js.map`, filename: join(SOURCEMAP_REL_DIR, '[name].js.map'), }) );
now my project is successful build release version. Reference : https://github.com/getsentry/sentry-cli/issues/179
https://github.com/getsentry/sentry-cli/issues/179
sorry for weak English.
The text was updated successfully, but these errors were encountered:
@ali4fun so is this an issue or do you just share the solution to your issue?
Sorry, something went wrong.
No branches or pull requests
I resolve this issue in my project to make these changes.
first I go to
https://sentry.io/settings/masaar/
in setting top organization slug, then copyorganization slug
and addorg: __SLUG__
linethen I get this error
error: A project slug is required
. then I resolve this error using to addorg: __SLUG__
line innow my project is successful build release version.
Reference :
https://github.com/getsentry/sentry-cli/issues/179
sorry for weak English.
The text was updated successfully, but these errors were encountered: