ntfy/web/vite.config.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
300 B
JavaScript
Raw Normal View History

/* eslint-disable import/no-extraneous-dependencies */
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
export default defineConfig(() => ({
build: {
outDir: "build",
2023-05-25 13:44:12 +12:00
assetsDir: "static/media",
},
server: {
port: 3000,
},
plugins: [react()],
}));