Skip to content

I don't know which tool

Don’t worry. We’ll find the right folder just by looking, with no prior knowledge needed.

Open the folder you were given and check whether it contains an index.html file right inside it.

  • Yes → that’s your folder, upload it. (A ready-made website)
  • No, but there’s a dist, build, or out sub-folder → open it: if it contains an index.html, that’s the one. Upload that sub-folder.
  • No, and none of those folders → the site hasn’t been built yet. Go to Step 2.

If there’s a package.json file, open it with any text editor (Notepad, TextEdit). Find the "scripts" section:

"scripts": {
"build": "vite build"
}

The word after build tells you the tool, and therefore the output folder:

If you see…ToolFolder it makes
vite buildVitedist
react-scripts buildCreate React Appbuild
next buildNext.jsout (with static export)
astro buildAstrodist

Then follow the matching guide in the left menu. In every case, the command is:

Terminal window
npm install
npm run build

If someone built the site for you, send them exactly this:

“Could you give me the build folder ready to host (the one with index.html right inside it, usually dist, build, or out), not the source code? I’m hosting it myself on Bailey.”

Anyone technical will get it on the first read.

Hosted on Bailey