🔧 (vite) migrate to vite (#7)

This commit is contained in:
Julien Calixte
2023-07-01 23:08:53 +02:00
committed by GitHub
parent 077c04b482
commit e4bba8246b
10 changed files with 370 additions and 5939 deletions

13
vite.config.ts Normal file
View File

@@ -0,0 +1,13 @@
import vue from '@vitejs/plugin-vue'
import path from 'path'
import { defineConfig } from 'vite'
export default defineConfig({
plugins: [vue()],
resolve: {
alias: {
'@': path.resolve(__dirname, './src'),
'node-fetch': 'isomorphic-fetch'
}
}
})