Skip to content

Commit 8f0265e

Browse files
committed
fix: client: parserMiddleware: exclude improtAssertinos
1 parent 7fa2e29 commit 8f0265e

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

client/src/store/parserMiddleware.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,9 @@ export default (store) => (next) => (action) => {
4343
const {plugins} = newParserSettings;
4444

4545
newParserSettings.plugins = plugins.filter((a) => {
46+
if (a === 'importAssertions')
47+
return false;
48+
4649
return a !== 'importAttributes' && a[0] !== 'importAttributes';
4750
});
4851
}

0 commit comments

Comments
 (0)