Skip to content

Commit c109e11

Browse files
committed
fix: Update CORS configuration
1 parent 636817f commit c109e11

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

backend/app.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ dotenv.config();
77
const app = express();
88

99
app.use(cors({
10-
origin: 'http://localhost:5173',
10+
origin: '*',
1111
credentials: true
1212
}));
1313
app.use(express.json());

0 commit comments

Comments
 (0)