Config: Register htmlInject plugin

This commit is contained in:
2025-11-18 21:22:34 -08:00
parent 424a8954b3
commit b100371627

View File

@@ -1,9 +1,11 @@
import { defineConfig } from 'vite'
import { VitePWA } from 'vite-plugin-pwa'
import htmlInject from 'vite-plugin-html-inject'
export default defineConfig({
build:{ minify:false },
plugins:[
htmlInject(),
VitePWA({
registerType:'autoUpdate',
manifest:{
@@ -23,4 +25,3 @@ export default defineConfig({
})
]
})