Skip to content
Open
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
2 changes: 1 addition & 1 deletion core/mosaic-webpack-fallback-plugin/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ class FallbackPlugin {
// we assume that last four characters is extension.
// but this may be not true, if we have something like `Account.type.js` and import it like `Account.type`
// thus we have to exclude such variants
const excludeList = ['type'];
const excludeList = ['type', 'form'];
const suffix = (pathname.match(/\.(.{1,4})$/) || [])[1];

// if extension is already present - check for existence
Expand Down