PWA fixed

This commit is contained in:
cpu
2025-05-08 15:36:17 +02:00
parent d741efa62d
commit 13b227cfc2
40 changed files with 5117 additions and 2 deletions

10
vite.config.js Normal file
View File

@@ -0,0 +1,10 @@
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
// https://vitejs.dev/config/
export default defineConfig({
plugins: [vue()],
server: {
port: 8080
}
})