updated dependencies for vue 3 and vite

Updated vue and vuex to vue 3 and vuex 4
Replaced vue-cli with vite
Removing a whole bunch of dependencies in the process
This commit is contained in:
Gator
2022-11-29 17:23:37 +01:00
parent a8124514bd
commit ceee7f13d7
7 changed files with 1537 additions and 34638 deletions

16
vite.config.js Normal file
View File

@ -0,0 +1,16 @@
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
const path = require("path");
export default defineConfig({
plugins: [vue()],
server: {
host: '127.0.0.1'
},
resolve: {
alias: {
"@": path.resolve(__dirname, "./src"),
},
},
})