widget init

This commit is contained in:
Alex
2023-09-08 13:30:08 +01:00
parent 374dffc5fa
commit cb5d65d11a
20 changed files with 5028 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
// // https://vitejs.dev/config/
// export default defineConfig({
// plugins: [react()],
// })
import path from "path"
export default defineConfig({
plugins: [react()],
resolve: {
alias: {
"@": path.resolve(__dirname, "./src"),
},
},
})