-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Closed
Labels
Description
Hello.
I have recently updated from Edge 16 to Edge 17 and now I began to experience issue with imports from momentjs. You can reproduce this issue easily. Assuming you have installed momentjs from npm, create two files:
index.html
<!DOCTYPE html>
<html lang="en">
<head>
</head>
<body>
<script src="test.js" type="module"></script>
</body>
</html>
test.js
import { getSetHour } from '../node_modules/moment/src/lib/units/hour.js'
console.log(getSetHour);
This snippet works fine in chrome and edge 16, but fails in edge 17.