I’m trying to upload my frontend. But i’m being caught with these “Module not found” logs
I’ve been going through all the threads for this issue but I dont see any casing issues, pathing issues or error logs on my local machine. I’ve made changes to all my folder and files names by capitalizing them. The only way i see it possibly working is the folder name and file names were different but that doesn’t seem like the best way to go around this issue.
Any sort of guidance would be greatly appreicated
Github: GitHub - bpun1p/MERN-weather-app
Branch: prod
Render error logs
Render Build and Deploy:
Branch - prod
Root Directory - ./client
Build Command - npm run build
Publish Directory - build
App.js imports:
import React, { useState } from ‘react’;
import ‘./App.css’;
import ‘./components/Utils/Tooltip/Tooltip.css’
import Dashboard from ‘./components/Dasboard/Dashboard’;
import Nav from ‘./components/Navigation/Navigation’;
import Profile from ‘./components/Profile/Profile’;
import Library from ‘./components/Library/Library’;
import Access from ‘./components/Access/Access’;
import { BrowserRouter, Routes, Route } from ‘react-router-dom’;