Skip to content

Commit

Permalink
add base to Vite config
Browse files Browse the repository at this point in the history
  • Loading branch information
alinnert committed Dec 6, 2023
1 parent 06eaacc commit 57bb9e9
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions vite.config.ts
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
import { fileURLToPath, URL } from 'node:url'

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

// https://vitejs.dev/config/
export default defineConfig({
plugins: [
vue(),
],
plugins: [vue()],
base: '/timetracker/',
resolve: {
alias: {
'@': fileURLToPath(new URL('./src', import.meta.url))
Expand Down

0 comments on commit 57bb9e9

Please sign in to comment.