-
Bug
-
Resolution: Fixed
-
Low
-
None
-
9.4.0
-
Severity 3 - Minor
-
-
CtB - Improve Existing
Issue Summary
Bitbucket CSE template is broken on PR overview page. Tested on Bitbucket v9.4
Repo: https://bitbucket.org/atlassianlabs/bitbucket-client-side-extensions-template/src/master/
Steps to Reproduce
- Clone and build `mvn clean install -DskipTests`
- Upload the app to Bitbucket
- Go to PR overview page
Expected Results
The sample extensions should appear on PR overview page
Actual Results
No extensions are being shown
Workaround
Add below to webpack config `plugins`
```
new webpack.DefinePlugin(
),
```
For example
```
plugins: [
...plugins(!isProduction),
clientsideExtensions,
newwebpack.DefinePlugin(
),
],
```