Bulk Deleting Unnecessary Sites Using Netlify CLI

I had accumulated a large number of Netlify sites, so here is a summary of the steps I took to bulk delete them using the CLI. Background The number of Netlify sites created during development and testing had grown to 41. Since only a few sites were currently in use, I decided to delete the old sites in bulk. Environment macOS Node.js netlify-cli v23.15.1 Steps 1. Install Netlify CLI n p m i n s t a l l - g n e t l i f y - c l i 2. Login n e t l i f y l o g i n A browser will open and display the Netlify authentication screen. After authorizing, the token will be saved to the CLI. ...

February 10, 2026 · 7 min · Nakamura

An Example of Deploying Nuxt 3 to Netlify and AWS

Overview This is a personal note on an example of deploying Nuxt 3 to Netlify and AWS. Below are the deployment examples. Netlify app.vue https://nuxt3-nakamura196.netlify.app/ server/api/hello.ts https://nuxt3-nakamura196.netlify.app/api/hello AWS (Serverless) app.vue https://nuxt3.aws.ldas.jp/ server/api/hello.ts https://nuxt3.aws.ldas.jp/api/hello The source code is at the following URL. https://github.com/nakamura196/nuxt3 I will explain each of them below. Netlify By referring to the following article, I was able to deploy including BFF (Backend for Frontend). https://blog.cloud-acct.com/posts/nuxt3-netlify-deploy/ AWS (Serverless) The following article was helpful for the method using Lambda Functions URL. ...

October 11, 2022 · 2 min · Nakamura