aboutsummaryrefslogtreecommitdiff
path: root/frontend/vite.config.ts
diff options
context:
space:
mode:
authorArda Serdar Pektezol <1669855+pektezol@users.noreply.github.com>2023-01-06 23:55:12 +0300
committerArda Serdar Pektezol <1669855+pektezol@users.noreply.github.com>2023-01-06 23:55:12 +0300
commit4820c7696db3c54959258b1a5b00c77e1246cbd7 (patch)
tree179edfca03618395939df1c3afccf2c90c64d424 /frontend/vite.config.ts
parent(#20) successful integration of demo upload to drive (diff)
downloadlphub-4820c7696db3c54959258b1a5b00c77e1246cbd7.tar.gz
lphub-4820c7696db3c54959258b1a5b00c77e1246cbd7.tar.bz2
lphub-4820c7696db3c54959258b1a5b00c77e1246cbd7.zip
what the fuck is this mess (#21)
Diffstat (limited to 'frontend/vite.config.ts')
-rw-r--r--frontend/vite.config.ts15
1 files changed, 0 insertions, 15 deletions
diff --git a/frontend/vite.config.ts b/frontend/vite.config.ts
deleted file mode 100644
index 2fb21e9..0000000
--- a/frontend/vite.config.ts
+++ /dev/null
@@ -1,15 +0,0 @@
1import { fileURLToPath, URL } from 'node:url'
2
3import { defineConfig } from 'vite'
4import vue from '@vitejs/plugin-vue'
5import vueJsx from '@vitejs/plugin-vue-jsx'
6
7// https://vitejs.dev/config/
8export default defineConfig({
9 plugins: [vue(), vueJsx()],
10 resolve: {
11 alias: {
12 '@': fileURLToPath(new URL('./src', import.meta.url))
13 }
14 }
15})