Skip to content

Commit

Permalink
fix gh pages
Browse files Browse the repository at this point in the history
  • Loading branch information
netosts committed Sep 23, 2024
1 parent d6bfb74 commit 5585cd3
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions vite.config.js
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
import { fileURLToPath, URL } from 'node:url'
import { fileURLToPath, URL } from "node:url";

import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import { defineConfig } from "vite";
import vue from "@vitejs/plugin-vue";

export default defineConfig({
// base: '/portfolio-site/',
base: "/my-portfolio/",
plugins: [vue()],
resolve: {
alias: {
'@': fileURLToPath(new URL('./src', import.meta.url))
}
}
})
"@": fileURLToPath(new URL("./src", import.meta.url)),
},
},
});

0 comments on commit 5585cd3

Please sign in to comment.