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
src: All javascript/jsx code goes in this directory
src/assets: Any static assets such as images that are loaded through the javascript files goes here.
index.html: This is the html file that appears when the dev server starts up.
src/app.jsx: The is the main app component for the entire app.
Important Commands
npm run dev: Starts dev server with Hot Module Reloading on port 5173. Anytime a file changes, the changes will automatocally be reflected in the browser
npm run lint: Run the lint checker with eslint to check for known linting issues
npm run build: Outputs the production files into the dist folder