Skip to content

Building App

Manolo Edge edited this page Oct 22, 2023 · 3 revisions

Guide on how to build the app. I will get to a better guide or even a cli tool to handle this. But for now, you can use esbuild to bundle your app written in ts. Here's an example command:

esbuild --bundle --outfile=index.build.js --minify ./index.ts
  • ./index.ts in the root of your project
  • ./index.build.js is the file you will import in the index.html