Skip to content

Commit 6772374

Browse files
committed
fix: dir
1 parent a582cab commit 6772374

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

assets/js/elements.js

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,27 @@
11
export const appElements = [
22
{
33
name: "About Me",
4-
image: "/desktop-web/images/about.png",
4+
image: "/images/about.png",
55
target: "about-window",
66
},
77
{
88
name: "Skills",
9-
image: "/desktop-web/images/skills.png",
9+
image: "/images/skills.png",
1010
target: "skills-window",
1111
},
1212
{
1313
name: "Education",
14-
image: "/desktop-web/images/education.png",
14+
image: "/images/education.png",
1515
target: "education-window",
1616
},
1717
{
1818
name: "Portfolio",
19-
image: "/desktop-web/images/portfolio.png",
19+
image: "/images/portfolio.png",
2020
target: "portfolio-window",
2121
},
2222
{
2323
name: "Contact",
24-
image: "/desktop-web/images/contacts.png",
24+
image: "/images/contacts.png",
2525
target: "contact-window",
2626
},
2727
];
@@ -30,7 +30,7 @@ export const windowElements = [
3030
{
3131
id: "welcome",
3232
title: "Welcome :)",
33-
content: "/desktop-web/markdown/welcome.md",
33+
content: "/markdown/welcome.md",
3434
active: true,
3535
},
3636
{

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)