Skip to content

Commit e9884af

Browse files
committed
fix: base url
1 parent 9e07c90 commit e9884af

File tree

8 files changed

+6
-6
lines changed

8 files changed

+6
-6
lines changed

assets/js/elements.js

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,27 @@
11
export const appElements = [
22
{
33
name: "About Me",
4-
image: "/assets/images/about.png",
4+
image: "/images/about.png",
55
target: "about-window",
66
},
77
{
88
name: "Skills",
9-
image: "/assets/images/skills.png",
9+
image: "/images/skills.png",
1010
target: "skills-window",
1111
},
1212
{
1313
name: "Education",
14-
image: "/assets/images/education.png",
14+
image: "/images/education.png",
1515
target: "education-window",
1616
},
1717
{
1818
name: "Portfolio",
19-
image: "/assets/images/portfolio.png",
19+
image: "/images/portfolio.png",
2020
target: "portfolio-window",
2121
},
2222
{
2323
name: "Contact",
24-
image: "/assets/images/contacts.png",
24+
image: "/images/contacts.png",
2525
target: "contact-window",
2626
},
2727
];
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

vite.config.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
const { defineConfig } = require("vite");
22

33
module.exports = defineConfig({
4-
base: "/desktop-web/",
4+
// base: "/desktop-web/",
55
build: {
66
rollupOptions: {
77
input: "./index.html",

0 commit comments

Comments
 (0)