There was an error while loading. Please reload this page.
1 parent 6f17c52 commit 5ebf038Copy full SHA for 5ebf038
src/helpers/constants.ts
@@ -7,9 +7,8 @@ export const TASK_DIR = process.cwd()
7
8
export const BUILD_DIR = `${TASK_DIR}/.netlify/.next`
9
10
-export const FUNCTIONS_INTERNAL_DIR = `${TASK_DIR}/.netlify/functions-internal`
11
-export const FUNCTIONS_URL = '/.netlify/functions'
+export const FUNCTIONS_DIR = `${TASK_DIR}/.netlify/functions-internal`
+export const EDGE_FUNCTIONS_DIR = `${TASK_DIR}/.netlify/edge-functions`
12
13
export const SERVER_HANDLER_NAME = '___netlify-server-handler'
14
-export const SERVER_HANDLER_DIR = `${FUNCTIONS_INTERNAL_DIR}/${SERVER_HANDLER_NAME}`
15
-export const SERVER_HANDLER_URL = `${FUNCTIONS_URL}/${SERVER_HANDLER_NAME}`
+export const SERVER_HANDLER_DIR = `${FUNCTIONS_DIR}/${SERVER_HANDLER_NAME}`
0 commit comments