generated from nhcarrigan/template
18 lines
294 B
TypeScript
18 lines
294 B
TypeScript
/**
|
|
* @copyright nhcarrigan
|
|
* @license Naomi's Public License
|
|
* @author Naomi Carrigan
|
|
*/
|
|
|
|
/**
|
|
* If you want a route to allow any origin for CORS, add
|
|
* the full path to this array.
|
|
*/
|
|
export const routesWithoutCors = [
|
|
"/",
|
|
"/announcement",
|
|
"/health",
|
|
"/mcp",
|
|
"/sanction",
|
|
];
|