Initial commit: OL Rescue Outlook add-in (New Outlook + Graph)

Made-with: Cursor
This commit is contained in:
2026-04-06 23:01:07 -07:00
commit 21e2ac98cd
18 changed files with 1062 additions and 0 deletions

15
vite.config.ts Normal file
View File

@@ -0,0 +1,15 @@
import { defineConfig } from "vite";
import basicSsl from "@vitejs/plugin-basic-ssl";
export default defineConfig({
plugins: [basicSsl()],
server: {
port: 3000,
strictPort: true,
https: {},
},
build: {
outDir: "dist",
emptyOutDir: true,
},
});