Add gh-pages deployment

This commit is contained in:
2024-05-26 23:00:39 +02:00
parent aae9215215
commit 4fd8628f64
6 changed files with 81 additions and 14 deletions
+6 -7
View File
@@ -1,16 +1,15 @@
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';
// https://vitejs.dev/config/
export default defineConfig({
plugins: [
vue(),
],
base: process.env.BASE || '/',
plugins: [vue()],
resolve: {
alias: {
'@': fileURLToPath(new URL('./src', import.meta.url))
}
}
})
});