feat(http): add plugin (#325)

This commit is contained in:
Lucas Fernandes Nogueira
2023-04-23 11:34:31 -07:00
committed by GitHub
parent 7a8633f429
commit 89fb40caac
17 changed files with 5370 additions and 4 deletions
+11
View File
@@ -0,0 +1,11 @@
import { readFileSync } from "fs";
import { createConfig } from "../../shared/rollup.config.mjs";
export default createConfig({
input: "guest-js/index.ts",
pkg: JSON.parse(
readFileSync(new URL("./package.json", import.meta.url), "utf8")
),
external: [/^@tauri-apps\/api/],
});