-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #116 from uiuc-wece/maya-testing
Fixing npm build issues
- Loading branch information
Showing
2 changed files
with
34 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
export default { | ||
module.exports = { | ||
"env": { | ||
"browser": true, | ||
"es2021": true | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,36 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
// <!DOCTYPE html> | ||
// <html lang="en"> | ||
|
||
<head> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no"> | ||
<meta name="title" content="WECEHacks 2024"> | ||
<meta name="description" content="WECE's Annual Hackathon"> | ||
<meta name="author" content="WECEHacks"> | ||
<meta name="keywords" content="WECEHacks"> | ||
<meta property="og:image" content="https://wecehacks.ctfd.io/files/66dbf2a715b9dcf964de2c15655cb756/WECE_Hacks_Presentations_5.png"> | ||
<meta property="og:image:width" content="width_in_pixels"> | ||
<meta property="og:image:height" content="height_in_pixels"> | ||
<title>WECE Hacks 2024</title> | ||
</head> | ||
// <head> | ||
// <meta charset="utf-8"> | ||
// <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no"> | ||
// <meta name="title" content="WECEHacks 2024"> | ||
// <meta name="description" content="WECE's Annual Hackathon"> | ||
// <meta name="author" content="WECEHacks"> | ||
// <meta name="keywords" content="WECEHacks"> | ||
// <meta property="og:image" content="https://wecehacks.ctfd.io/files/66dbf2a715b9dcf964de2c15655cb756/WECE_Hacks_Presentations_5.png"> | ||
// <meta property="og:image:width" content="width_in_pixels"> | ||
// <meta property="og:image:height" content="height_in_pixels"> | ||
// <title>WECE Hacks 2024</title> | ||
// </head> | ||
|
||
<body> | ||
<script> | ||
window.location.href = "https://wecehacks.github.io/2024/index.html"; | ||
</script> | ||
</body> | ||
// <body> | ||
// <script> | ||
// window.location.href = "https://wecehacks.github.io/2024/index.html"; | ||
// </script> | ||
// </body> | ||
|
||
</html> | ||
// </html> | ||
|
||
import { useEffect } from "react"; | ||
|
||
const Wecehacks = () => { | ||
useEffect(() => { | ||
// Redirect the user when the component mounts | ||
window.location.href = "https://wecehacks.github.io/2024/index.html"; | ||
}, []); // Empty dependency array means this runs only once when the component is mounted | ||
|
||
return null; // This component doesn't need to render anything | ||
}; | ||
|
||
export default Wecehacks; |