The site hasn’t been deployed yet, I’ve tried to research everywhere but can’t seem to resolve this.
I have a next.js application. I don’t have a .gitmodule
file and I don’t really understand why submodules are needed (I also don’t fully understand them)
I can deploy my app on other service providers such as Vercel. And my npm run build
deploys without any errors.
My repository is private.
8:40:28 PM: Build ready to start
8:40:29 PM: build-image version: 08743d1afd48e846911a90227808ab95fd3def26 (focal)
8:40:29 PM: build-image tag: v4.10.0
8:40:29 PM: buildbot version: 2683a51786f18409d430916428f927b3e87512a0
8:40:29 PM: Fetching cached dependencies
8:40:29 PM: Failed to fetch cache, continuing with build
8:40:29 PM: Starting to prepare the repo for build
8:40:30 PM: No cached dependencies found. Cloning fresh repo
8:40:30 PM: git clone https://github.com/Demeetrii/radioverse-home
8:40:31 PM: Preparing Git Reference refs/heads/main
8:40:31 PM: Error checking out submodules: fatal: No url found for submodule path 'radioverse-home' in .gitmodules
8:40:31 PM: Creating deploy upload records
8:40:31 PM: Failing build: Failed to prepare repo
8:40:31 PM: Failed during stage 'preparing repo': Error checking out submodules: fatal: No url found for submodule path 'radioverse-home' in .gitmodules
: exit status 128
8:40:32 PM: Finished processing build request in 2.172201859s
I also have a netlify.toml
Which i recently added but makes no difference
[build]
command = "npm run build"
publish = "out"
[[redirect]]
from ="/*"
to = "/404"
status = "404"