Browse Source

orgin changes

tipoff-server
Ramprasad 1 month ago
parent
commit
df52512cad
1 changed files with 3 additions and 1 deletions
  1. +3
    -1
      src/index.ts

+ 3
- 1
src/index.ts View File

@ -16,7 +16,9 @@ import {
const app = express();
// Set up CORS middleware for Express
app.use(cors());
app.use(cors({
origin: "*",
}));
// Create an HTTP server
const httpServer: HTTPServer = createServer(app);


Loading…
Cancel
Save