2021-12-08 21:44:57 +01:00
|
|
|
import { defineConfig } from "vite";
|
|
|
|
|
import react from "@vitejs/plugin-react";
|
|
|
|
|
import { VitePWA } from "vite-plugin-pwa";
|
|
|
|
|
|
|
|
|
|
// https://vitejs.dev/config/
|
|
|
|
|
export default defineConfig({
|
2021-12-13 20:17:10 +01:00
|
|
|
base: "/walk-up-alarm/",
|
|
|
|
|
plugins: [react(), VitePWA()],
|
2021-12-08 21:44:57 +01:00
|
|
|
});
|