Skip to content
Open
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
4 changes: 4 additions & 0 deletions packages/pluggable-widgets-tools/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),

- We increased the minimum node version to 22.

### Fixed

- We fixed an issue where images imported in widgets were not displayed correctly in the React client when deployed in the cloud.

## [11.12.0] - 2026-06-30

### Changed
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,11 @@ export default async args => {
url({
include: imagesAndFonts,
limit: 0,
publicPath: `${join("widgets", outAssetsDir)}/`, // Prefix for the actual import, relative to Mendix web server root
// Prefix for the actual import, relative to Mendix web server root
// dojo uses: "widgets/<widget-path>/assets/123abc.png"
// react uses: "dist/<widget-path>/assets/123abc.png"
publicPath:
outputFormat === "es" ? `${join("dist", outAssetsDir)}/` : `${join("widgets", outAssetsDir)}/`,
destDir: absoluteOutAssetsDir
}),
postCssPlugin(outputFormat, production),
Expand Down
Loading