This repository has been archived on 2025-07-07. You can view files and clone it, but cannot push or open issues/pull-requests.
|
/* A Netlify cloud function to return a message endpoints that are not available */
|
|
exports.handler = async () => ({
|
|
statusCode: 200,
|
|
body: JSON.stringify({
|
|
success: false,
|
|
error: 'This action is not supported on Netlify',
|
|
}),
|
|
});
|