13 lines
338 B
JavaScript
13 lines
338 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.allowedOrigins = void 0;
|
|
exports.allowedOrigins = [
|
|
"https://www.yoursite.com",
|
|
"http://127.0.0.1:5500",
|
|
"http://localhost:4400",
|
|
"http://10.38.27.200",
|
|
"http://localhost:8080",
|
|
"http://localhost:8000",
|
|
"http://127.0.0.1"
|
|
];
|