mirror of
https://gitlab.com/foxixus/neomovies-api.git
synced 2025-10-27 17:38:51 +05:00
chore(netlify): add serverless config and function entry for API
This commit is contained in:
15
netlify.toml
Normal file
15
netlify.toml
Normal file
@@ -0,0 +1,15 @@
|
||||
[build]
|
||||
functions = "netlify/functions"
|
||||
|
||||
[build.environment]
|
||||
GO_VERSION = "1.22.6"
|
||||
|
||||
# Optional: include static assets used by handlers (placeholders, etc.)
|
||||
[functions]
|
||||
included_files = ["assets/**", "public/**", "static/**"]
|
||||
|
||||
# Route all API requests to the serverless function "api"
|
||||
[[redirects]]
|
||||
from = "/api/*"
|
||||
to = "/.netlify/functions/api/:splat"
|
||||
status = 200
|
||||
Reference in New Issue
Block a user