0

I have a react application which I want to deploy on netlify.However Im getting the following error:

 The target environment doesn't support dynamic import() syntax so it's not possible to use external type 'module' within a script
Vatsal A Mehta
  • 392
  • 2
  • 15

1 Answers1

1

You're going to want to find the npm module for what you're trying to import and include if via

import exampleJS from '@exampleJS/exampleJS';

Tom
  • 11
  • 1