The browser's log prints this error: "ReferenceErr...
# javascript
k
The browser's log prints this error: "ReferenceError: define is not defined[Learn More] main.js11"
k
Looks like you compile your project with
moduleKind
=
AMD
. You should either prefer
plain
or use some
AMD
provider (like require.js).
k
Ah that explains a lot. In the tutorial they seem to pick "amd" as an example, but that doesn't work obviously. Thanks a lot!