I am writing my thesis and run it on LaTex on VS-Code on a macOS and all of sudden from today morning I keep receiving the following error:
I found no \citation commands.
I found no \bibdata command.
I found no \bibstyle command.
The pdf file is generated but non of my references is working and is not showing anymore in the pdf. And the list of references is also gone. I attached a screenshot of the references in the generated pdf file.
There are the commands I use for the bibliography:
\usepackage[backend=biber, style=numeric, alldates=comp, sorting=none]{biblatex}
\addbibresource{bibliography.bib}
Afterwards, I try it on windows pc and I ran it and it worked.
So, I have no idea what is going on and if there is anyone who can help me, I would appreciate any comment and any idea.

biblatexbibliography (with the defaultbackend=biber,) the errors you quote usually mean that BibTeX is run instead of Biber. Your document needs to be compiled with Biber, though. If your editor is involved in calling the LaTeX and friends for you that means it is misconfigured. It is weird that this should happen all of a sudden. Double check your settings with https://tex.stackexchange.com/q/154751/35864. – moewe May 25 '23 at 20:47pdflatexerror! Undefined control sequence. l.1 \chapter {controller Design}would most likely come from runningpdflatexon a chapter file rather than the main tex file, this wouldn't directly break references but could still be responsible if your editor is auto-detecting whether it should runbibtexorbiberbased on the file it's compiling (the chapter file presumably contains\cites but no\usepackage{biblatex}to indicatebibershould be used). – Dai Bowen May 25 '23 at 21:01