Skip to content

Commit

Permalink
remove node url import
Browse files Browse the repository at this point in the history
  • Loading branch information
Lenni009 committed Mar 2, 2024
1 parent ce7d75b commit bc66ef3
Showing 1 changed file with 11 additions and 13 deletions.
24 changes: 11 additions & 13 deletions vite.config.ts
Original file line number Diff line number Diff line change
@@ -1,17 +1,15 @@
import { fileURLToPath, URL } from 'node:url'
import { fileURLToPath } from 'node:url';

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

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

0 comments on commit bc66ef3

Please sign in to comment.