Skip to content

Commit

Permalink
fix: base url
Browse files Browse the repository at this point in the history
  • Loading branch information
ryohilmi committed May 25, 2024
1 parent 9e07c90 commit e9884af
Show file tree
Hide file tree
Showing 8 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions assets/js/elements.js
Original file line number Diff line number Diff line change
@@ -1,27 +1,27 @@
export const appElements = [
{
name: "About Me",
image: "/assets/images/about.png",
image: "/images/about.png",
target: "about-window",
},
{
name: "Skills",
image: "/assets/images/skills.png",
image: "/images/skills.png",
target: "skills-window",
},
{
name: "Education",
image: "/assets/images/education.png",
image: "/images/education.png",
target: "education-window",
},
{
name: "Portfolio",
image: "/assets/images/portfolio.png",
image: "/images/portfolio.png",
target: "portfolio-window",
},
{
name: "Contact",
image: "/assets/images/contacts.png",
image: "/images/contacts.png",
target: "contact-window",
},
];
Expand Down
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
2 changes: 1 addition & 1 deletion vite.config.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
const { defineConfig } = require("vite");

module.exports = defineConfig({
base: "/desktop-web/",
// base: "/desktop-web/",
build: {
rollupOptions: {
input: "./index.html",
Expand Down

0 comments on commit e9884af

Please sign in to comment.