About 21 results
Open links in new tab
  1. Deployment | Create React App

    To deploy your React project with a Vercel for Git Integration, make sure it has been pushed to a Git repository. Import the project into Vercel using the Import Flow . During the import, you will …

  2. Making a Progressive Web App | Create React App

    Starting with Create React App 4, you have full control over customizing the logic in this service worker, by creating your own src/service-worker.js file, or customizing the one added by the …

  3. Adding Images, Fonts, and Files | Create React App

    The ReactComponent import name is significant and tells Create React App that you want a React component that renders an SVG, rather than its filename. Tip: The imported SVG React …

  4. Adding a Sass Stylesheet | Create React App

    To use imports relative to a path you specify, you can add a .env file at the project root with the path specified in the SASS_PATH environment variable. To specify more directories you can …

  5. Integrating with an API Backend | Create React App

    These tutorials will help you to integrate your app with an API backend running on another port, using fetch() to access it. Node Check out this tutorial .

  6. Adding Bootstrap | Create React App

    React Bootstrap is the most popular option that strives for complete parity with Bootstrap. reactstrap is also a good choice for projects looking for smaller builds at the expense of some …

  7. Importing a Component | Create React App

    You can configure your application to support importing modules using absolute paths. This can be done by configuring a jsconfig.json or tsconfig.json file in the root of your project. If you're …

  8. Code Splitting | Create React App

    This project setup supports code splitting via dynamic import(). Its proposal is in stage 4. The import() function-like form takes the module name as an argument and returns a Promise …

  9. Running Tests | Create React App

    Learn more about the utilities provided by react-testing-library to facilitate testing asynchronous interactions as well as selecting form elements from the react-testing-library documentation …

  10. Adding Custom Environment Variables | Create React App

    These environment variables can be useful for displaying information conditionally based on where the project is deployed or consuming sensitive data that lives outside of version control. …

Refresh