Merge branch 'main' into assignment

This commit is contained in:
JBB0807 2025-05-05 10:02:29 -07:00
commit f4aedf1705

View file

@ -11,6 +11,8 @@ const app = express();
app.use(express.json()); app.use(express.json());
app.use(express.urlencoded({ extended: true })); app.use(express.urlencoded({ extended: true }));
// Allow all origins (not recommended for production)
app.use(cors());
// app.use( // app.use(
// session({ // session({