Silly question probably, but, how do I remove the default border from exported projects?
Develop games in your browser. Powerful, performant & highly capable.
By tweaking its CSS/styling code.
Considering the file index.html in a default exported project you would have to remove
<style type="text/css"> canvas { border: 1px solid black; } </style>
from index.html.
More about HTML and styling in this tutorial.