JoaoHamerski OP 5 years agoLevel 3ReplyReport SpamI just figured out what was wrong: mix.js('src/app.js', 'dist').setPublicPath('dist/') .react(); I setted the publicPath to dist/ instead of public/ so webpack was looking my index.html inside my dist/ when it was inside my public/ folder, to fix it i just changed the setPublicPath to the folder where my index.html was. Like Reply