Skip to content

Commit

Permalink
Switch analyzer to disabled
Browse files Browse the repository at this point in the history
  • Loading branch information
sauntimo committed Jan 13, 2025
1 parent 6782967 commit 0fa37c2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 41 deletions.
3 changes: 2 additions & 1 deletion build/webpack/config.prod.js
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,8 @@ config.plugins = [
new BundleAnalyzerPlugin({
reportFilename: 'report.html',
statsFilename: 'stats.json',
analyzerMode: 'static',
// switch analyzerMode to 'static' to generate a static report
analyzerMode: 'disabled',
generateStatsFile: true,
statsOptions: { source: false }
})
Expand Down
39 changes: 0 additions & 39 deletions report-large.html

This file was deleted.

2 changes: 1 addition & 1 deletion tests/integration/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export const getAccessToken = async () => {
.send(credentials)
.set('Content-Type', 'application/json');

return result.body.access_token;
return result.body.access_token;
};

export const authzApi = (endpoint) => (config('AUTHZ_API_URL') + endpoint);
Expand Down

0 comments on commit 0fa37c2

Please sign in to comment.