Skip to content

Commit

Permalink
fix(Assets): changing assets to Assets to fix gh-pages problem
Browse files Browse the repository at this point in the history
  • Loading branch information
alexZ7000 committed Aug 27, 2024
1 parent a2575f2 commit fdb912d
Show file tree
Hide file tree
Showing 7 changed files with 4 additions and 4 deletions.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
4 changes: 2 additions & 2 deletions src/app/web/components/Generic/Navbar.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import WhiteLogo from "@assets/react-git-logo-white.png"; // import usando alias
import DarkLogo from "../../../assets/react-git-logo-black.png"; // import sem usar alias
import WhiteLogo from "../../../Assets/react-git-logo-white.png"; // import usando alias
import DarkLogo from "../../../Assets/react-git-logo-black.png"; // import sem usar alias
import { useThemeDetector } from "@functions/ThemeDetector.ts";
import { NavLink, useNavigate } from "react-router-dom";
import { navbarProperties } from "@constants/NavbarProperties.ts";
Expand Down
2 changes: 1 addition & 1 deletion src/app/web/screens/Error404.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import warning from "@assets/warning.png";
import warning from "../../Assets/warning.png";

export default function Error404() {
return (
Expand Down
2 changes: 1 addition & 1 deletion vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export default defineConfig({
"@components": "/src/app/web/components",
"@screens": "/src/app/web/screens",
"@routes": "/src/app/web/routes",
"@assets": "/src/app/assets",
"@assets": "/src/app/Assets",
"@styles": "/src/app/web/styles",
"@constants": "/src/app/utils/constants",
"@integrations": "/src/@clean/integrations/modules",
Expand Down

0 comments on commit fdb912d

Please sign in to comment.