Ya estoy inscrito ¿Todavía no tienes acceso? Nuestros Planes
Ya estoy inscrito ¿Todavía no tienes acceso? Nuestros Planes
1
respuesta

[Duda] Al ejecutar npm start me abre http://localhost:3000/proyecto-facundoflix en lugar de http://localhost:3000/

A continuacion estan mis archivos de App.js, index.html y package.json. No he podido encontrar que es lo que provoca que me dirija a ese enlace por defecto, ya que en ese enlace me muestra una agina en blanco

import React, { useState } from "react";
import ReactDOM from "react-dom/client";
import { BrowserRouter, Route, Routes } from "react-router-dom";
import { DatosProvider } from "../src/Context/DatosContext";
import GlobalStyle from "./GlobalStyle";
import { ThemeProvider } from "styled-components";
import { temaClaro, temaOscuro } from "./Components/UI/Temas";
import { Home } from "./Pages/Home";
import { NuevoVideo } from "./Pages/NuevoVideo";
import { NuevaCategoria } from "./Pages/NuevaCategoria";

function App() {
  const [tema, setTema] = useState(true);

  const toggleTema = () => {
    setTema((tema) => !tema);
  };

  return (
    <>
      <ThemeProvider theme={tema ? temaClaro : temaOscuro}>
        <GlobalStyle />
        <DatosProvider>
          <BrowserRouter basename="/">
            <Routes>
              <Route index element={<Home />} />
              <Route path="nuevo-video" element={<NuevoVideo />} />
              <Route path="nueva-categoria" element={<NuevaCategoria />} />
            </Routes>
          </BrowserRouter>
        </DatosProvider>
      </ThemeProvider>
    </>
  );
}

const root = ReactDOM.createRoot(document.getElementById("root"));
root.render(<App />);

export default App;

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8" />
    <link rel="logo" href="../src/assets/images/logo.png" />
    <meta name="viewport" content="width=device-width, initial-scale=1" />
    <meta name="theme-color" content="#000000" />
    <meta
      name="description"
      content="Web site created using create-react-app"
    />
    <link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" />
    <!--
      manifest.json provides metadata used when your web app is installed on a
      user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/
    -->
    <link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
    <!--
      Notice the use of %PUBLIC_URL% in the tags 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>FacuFlix</title>
  </head>
  <body>
    <noscript>You need to enable JavaScript to run this app.</noscript>
    <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` or `yarn start`.
      To create a production bundle, use `npm run build` or `yarn build`.
    -->
  </body>
</html>
{
  "name": "proyecto-facuflix",
  "version": "0.1.0",
  "private": true,
  "homepage": "https://ffacuprato.github.io/proyecto-facundoflix/",
  "dependencies": {
    "@emotion/react": "^11.11.1",
    "@emotion/styled": "^11.11.0",
    "@mui/material": "^5.14.12",
    "@testing-library/jest-dom": "^5.17.0",
    "@testing-library/react": "^13.4.0",
    "@testing-library/user-event": "^13.5.0",
    "framer-motion": "^10.16.4",
    "gh-pages": "^6.0.0",
    "mui-color-input": "^2.0.0",
    "react": "^18.2.0",
    "react-dom": "^18.2.0",
    "react-router-dom": "^6.16.0",
    "react-scripts": "5.0.1",
    "styled-components": "^6.0.8",
    "web-vitals": "^2.1.4"
  },
  "scripts": {
    "predeploy": "npm run build",
    "deploy": "gh-pages -d build",
    "start": "react-scripts start",
    "build": "react-scripts build",
    "test": "react-scripts test",
    "eject": "react-scripts eject"
  },
  "eslintConfig": {
    "extends": [
      "react-app",
      "react-app/jest"
    ]
  },
  "browserslist": {
    "production": [
      ">0.2%",
      "not dead",
      "not op_mini all"
    ],
    "development": [
      "last 1 chrome version",
      "last 1 firefox version",
      "last 1 safari version"
    ]
  }
}
1 respuesta

Hola Facundo,

Lo que está sucediendo es que cuando ejecutas npm start, tu aplicación está siendo servida en la ruta que especificaste en el campo "homepage" de tu archivo package.json.

En tu caso, el campo "homepage" está configurado de la siguiente manera:

"homepage": "https://ffacuprato.github.io/proyecto-facundoflix/",

Esto significa que cuando tu aplicación se inicia, automáticamente se abre en la ruta /proyecto-facundoflix.

Si deseas que tu aplicación se abra en http://localhost:3000/ en lugar de http://localhost:3000/proyecto-facundoflix, puedes eliminar el campo "homepage" en tu archivo package.json.

Tu archivo package.json debería verse así:

{
  "name": "proyecto-facuflix",
  "version": "0.1.0",
  "private": true,
  ...
}

Después de hacer este cambio, cuando ejecutes npm start, tu aplicación debería abrirse en http://localhost:3000/.

¡Saludos!

Si este post te ayudó, por favor marca como solucionado ✓. ¡Continúa con tus estudios!