Skip to content

Commit

Permalink
update base path
Browse files Browse the repository at this point in the history
  • Loading branch information
yvo-niedrich committed Jul 18, 2024
1 parent 9c11930 commit 7f9ca7d
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,14 @@ import vueJsx from '@vitejs/plugin-vue-jsx'

// https://vitejs.dev/config/
export default defineConfig({
plugins: [
vue(),
vueJsx(),
],
resolve: {
alias: {
'@': fileURLToPath(new URL('./src', import.meta.url))
base: '/markdown-blog/',
plugins: [
vue(),
vueJsx(),
],
resolve: {
alias: {
'@': fileURLToPath(new URL('./src', import.meta.url))
}
}
}
})

0 comments on commit 7f9ca7d

Please sign in to comment.