Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Develop #560

Open
wants to merge 19 commits into
base: master
Choose a base branch
from
6 changes: 5 additions & 1 deletion .stylelintrc.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
module.exports = {
extends: "@mate-academy/stylelint-config",
rules: {}
rules: {
"property-no-unknown": [true, {
ignoreProperties: ["composes"]
}]
}
};
16 changes: 16 additions & 0 deletions 404.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<!DOCTYPE html>
<html>

<head>
<meta charset="UTF-8">
<meta http-equiv="refresh" content="0; url=index.html">
<script>
window.location.replace("/index.html");
</script>
</head>

<body>
<h1>Redirecting...</h1>
</body>

</html>
4 changes: 3 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite + React + TS</title>
<link rel="icon" href="./src/images/favicon.png" />
<title>Nice Gadgets store!</title>
<base href="/react_phone-catalog/" />
</head>
<body>
<div id="root"></div>
Expand Down
Loading
Loading