mirror of
https://github.com/FranP-code/unduck.git
synced 2025-10-13 00:32:41 +00:00
11 lines
189 B
TypeScript
11 lines
189 B
TypeScript
import { defineConfig } from "vite";
|
|
import { VitePWA } from "vite-plugin-pwa";
|
|
|
|
export default defineConfig({
|
|
plugins: [
|
|
VitePWA({
|
|
registerType: "autoUpdate",
|
|
}),
|
|
],
|
|
});
|