Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# bedrock-webpack ChangeLog

## 11.6.1 - 2026-06-dd

### Fixed
- Ensure default base config disables unavailable `crypto` frontend polyfill.

## 11.6.0 - 2026-06-04

### Changed
Expand Down
5 changes: 5 additions & 0 deletions lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -305,6 +305,11 @@ export async function bundle(options = {}) {
// 'my-project': path.resolve(__dirname, '../components')
//vue: require.resolve('@vue/compat')
vue: require.resolve('vue')
},
fallback: {
// fixes missing crypto polyfill warning; apps that install this
// polyfill can configure it to load what they install instead
crypto: false
}
},
module: {
Expand Down