You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jun 15, 2023. It is now read-only.
on the step where we
$ echo 'console.log([1, 2, 3].reduce((s, n) => s + n ** 2))' > app/index.js
one must
<script>require('index');</script>
in /assets/index.html
or one must
require('./index');
in app/initialize.js
or one must perhaps do something else not mentioned in the tutorial.
my point is that it is a mistake to not mention "that 'something'" in the initial tutorial about this step, though it is mentioned in various SO questions and what not.
follow the tutorial on the getting started link and let me know if i'm missing something.
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
on the step where we
<script>require('index');</script>$ echo 'console.log([1, 2, 3].reduce((s, n) => s + n ** 2))' > app/index.js
one must
in /assets/index.html
or one must
require('./index');
in app/initialize.js
or one must perhaps do something else not mentioned in the tutorial.
my point is that it is a mistake to not mention "that 'something'" in the initial tutorial about this step, though it is mentioned in various SO questions and what not.
follow the tutorial on the getting started link and let me know if i'm missing something.
The text was updated successfully, but these errors were encountered: