This repository has been archived on 2024-05-13. You can view files and clone it, but cannot push or open issues or pull requests.
share2fedi/vite.config.js
Nikita Karamov c53384a54d
Fix Vite config
Node plugin would also work on build which messes up the `root` config
entry. This should fix the deploy not working.
2023-09-02 21:56:39 +02:00

24 lines
545 B
JavaScript

import legacy from "@vitejs/plugin-legacy";
import { VitePluginNode } from "vite-plugin-node";
const vitePluginNode = VitePluginNode({
// Workaround from: https://github.com/axe-me/vite-plugin-node/issues/47
adapter({ app, req, res, next }) {
if (req.url.startsWith("/api/")) {
app(req, res);
} else {
next();
}
},
appPath: "./api/share.js",
});
vitePluginNode[0].apply = "serve";
export default {
build: {
minify: "terser",
terserOptions: { ecma: 5 },
sourcemap: "true",
},
plugins: [legacy(), ...vitePluginNode],
};