9 lines
239 B
TypeScript
9 lines
239 B
TypeScript
import { defineConfig } from "vite";
|
|
import react from "@vitejs/plugin-react";
|
|
import { powerApps } from "@microsoft/power-apps-vite/plugin"
|
|
|
|
// https://vite.dev/config/
|
|
export default defineConfig({
|
|
plugins: [react(), powerApps()],
|
|
});
|