How can i delete Internal Function?

Even though I deleted all functions, one internal function is running continuously, creating extra cost. How can I prevent this from the function panel.

  • Nuxt.js
10:47:48 AM: Packaging Functions from .netlify/functions-internal directory:
10:47:48 AM:  - server/server.js

9:46:19 PM: 1 new functions to upload



Hi @f13end, the internal functions run when you have Server Side Rendering SSR enabled.
If your site requires that you perform some SSR tasks, disabling SSR will break your application.

However if you don’t need SSR you can disable it by visiting the Official Nuxt.js Documentation site to learn how to disable SSR in the link below.

If you are using Nuxt.js version 3 check the link below as well.

Thanks.