### Installing Project Dependencies with npm Source: https://github.com/the-hideout/tarkov-dev/blob/main/README.md This command installs all necessary project dependencies listed in the `package.json` file. It should be run once after cloning the repository to set up the development environment for the tarkov.dev website. ```Bash npm install ``` -------------------------------- ### Starting Local Development Server with npm Source: https://github.com/the-hideout/tarkov-dev/blob/main/README.md This command initiates the local development server for the tarkov.dev website, making it accessible at `localhost:3000`. It enables real-time development and testing of changes without needing to deploy. ```Bash npm start ``` -------------------------------- ### Updating Local Data with npm Source: https://github.com/the-hideout/tarkov-dev/blob/main/README.md This command executes the `prebuild` script, which is used to update the local data consumed by the tarkov.dev website. This is useful for refreshing content or data sets without requiring a full server restart. ```Bash npm run prebuild ``` -------------------------------- ### Defining Custom Fonts for Tarkov.dev CSS Source: https://github.com/the-hideout/tarkov-dev/blob/main/public/index.html This CSS snippet defines custom font faces for the tarkov.dev website, ensuring consistent typography. It specifies 'bender' font with different weights and styles, loading them from local sources or public URLs, and uses `font-display` for optimal loading. ```CSS @font-face { font-family: 'bender'; font-display: block; font-style: normal; font-weight: 400; src: local('Bender Regular'),url('%PUBLIC_URL%/fonts/bender.woff2') format('woff2'); } @font-face { font-family: 'bender'; font-display: swap; font-style: normal; font-weight: 700; src: local('Bender Bold'),url('%PUBLIC_URL%/fonts/bender-bold.woff2') format('woff2'); } @font-face { font-family: 'bender'; font-display: swap; font-style: italic; font-weight: 400; src: local('Bender Italic'),url('%PUBLIC_URL%/fonts/bender-italic.woff2') format('woff2'); } @font-face { font-family: 'bender'; font-display: swap; font-style: italic; font-weight: 700; src: local('Bender Bold Italic'),url('%PUBLIC_URL%/fonts/bender-bold-italic.woff2') format('woff2'); } ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.