Je commence à m'amuser avec l'application Create React App, mais je n'arrive pas à comprendre comment l'option index.js
est chargé à l'intérieur de index.html
. Voici le code html :
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="shortcut icon" href="%PUBLIC_URL%/favicon.ico">
<!--
Notice the use of %PUBLIC_URL% in the tag above.
It will be replaced with the URL of the `public` folder during the build.
Only files inside the `public` folder can be referenced from the HTML.
Unlike "/favicon.ico" or "favicon.ico", "%PUBLIC_URL%/favicon.ico" will
work correctly both with client-side routing and a non-root public URL.
Learn how to configure a non-root public URL by running `npm run build`.
-->
<title>React App</title>
</head>
<body>
<div id="root"></div>
<!--
This HTML file is a template.
If you open it directly in the browser, you will see an empty page.
You can add webfonts, meta tags, or analytics to this file.
The build step will place the bundled scripts into the <body> tag.
To begin the development, run `npm start`.
To create a production bundle, use `npm run build`.
-->
</body>
</html>
Mais je ne vois nulle part l'importation de la index.js
. Où est le lien ? Qu'est-ce qui me manque ?
0 votes
Comment servir votre contenu ?
0 votes
Je n'ai rien changé par défaut, je fais juste ça :
create-react-app my-app
J'ouvre le projet en utilisant webstorm, puis je fais npm start, mais ma question est de savoir comment index.html sait qu'il doit charger index.js ? où est write ?6 votes
webpack.github.io/docs/webpack-dev-server.html Webpack-dev-server s'occupe de cela pour vous dans le développement.
0 votes
@NicklasWinger Où puis-je trouver le fichier de configuration pour comprendre le mécanisme ?
4 votes
Vous pouvez exécuter
npm run eject
pour contrôler manuellement les configurations. Je recommande de faire une installation plus basique à partir de zéro pour bien comprendre ce qui se passe :)0 votes
Pas d'autres réponses, sauf celle de ce Dan ? ;-)