Empresas
Empregos
  • Sobre nós
  • Soluções
    • Publicação de vagas
      Publique sua vaga e receba candidatos qualificados em 48h.
    • Avaliações de candidatos
      Mais de 500 testes técnicos e psicológicos, mais anti-fraude.
    • Headhunting
      Busca executiva personalizada do início ao fim.
    • Folha de Pagamento + EOR
      Dispersão de folha e EOR em mais de 15 países da LATAM.
  • Preços
  • Empregos

0

207
Visualizações
Routing from any path to same files in express, nodejs

I want to be able to send the same files for different paths like /stuff and /stuff/foo, the problem is that when I do try to do this I'm getting the following error:

Refused to execute script from 'http://localhost:8000/stuff/main.js' because its MIME type ('text/html') is not executable, and strict MIME type checking is enabled.

Here is the code:

app.use("/", express.static(path.join(__dirname, "./../public")));
app.get("/stuff", sendIndexHTML);
app.get("/stuff/:id", sendIndexHTML);

function sendIndexHTML(req, res) {
    res.sendFile(path.join(__dirname + "./../public/index.html"));
}
over 4 years ago · Santiago Trujillo
1 Respostas
Responde à pergunta

0

You're referencing main.js in your index.html as a relative path so it's getting served from /stuff, which that path is set up to return index.html (which has a mime type text/html).

What you need to do is update the script file path in your html file.

change

<script src="main.js"></script>

to

<script src="/main.js"></script>

that way it is served from the root path which is configured to serve static assets.

over 4 years ago · Santiago Trujillo Relatório
Responde à pergunta
Encontrar trabalhos remotos

Descubra a nova forma de encontrar um emprego!

melhores empregos
Principais categorias de trabalho
Empresas
Postar vaga Preços Comercial
Jurídico
Termos e Condições Política de privacidade
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomende algumas ofertas para mim
Preciso de ajuda