Deploy your Astro Site to Kinsta Application Hosting

You can use Kinsta Application Hosting to host an Astro site on their cloud hosting.

Configuring your Astro project

Section titled Configuring your Astro project

To host your project on Kinsta Application Hosting, you need to:

  • Include a name field in your package.json. (This can be anything, and will not affect your deployment.)
  • Include a build script in your package.json. (Your Astro project should already include this.)
  • Install the serve package and set the start script to serve dist/.

Here are the necessary lines in your package.json file:

astro.config.mjs
{
  "name": "anything", // This is required, but the value does not matter.
  "scripts": {
    "dev": "astro dev",
    "start": "serve dist/",
    "build": "astro build",
    "preview": "astro preview",
    "astro": "astro"
  },
  "dependencies": {
    "astro": "^1.6.10",
    "serve": "^14.0.1"
  },
}

Once your project’s GitHub repository is connected, you can trigger manual deploys to Kinsta Application Hosting in the MyKinsta Admin Panel. You can also set up automatic deployments in your admin panel.

Configuring a new Kinsta application

Section titled Configuring a new Kinsta application
  1. Go to the My Kinsta admin panel.
  2. Go to the Applications tab.
  3. Connect your GitHub repository.
  4. Press the Add service > Application button.
  5. Follow the wizard steps.
  6. Your application is deployed.

More Deployment Guides

Filter by deploy type