mirror of
https://github.com/tauri-apps/plugins-workspace.git
synced 2026-04-27 11:56:05 +02:00
11 lines
265 B
JavaScript
11 lines
265 B
JavaScript
import { readFileSync } from "fs";
|
|
|
|
import { createConfig } from "../../../shared/rollup.config.mjs";
|
|
|
|
export default createConfig({
|
|
pkg: JSON.parse(
|
|
readFileSync(new URL("./package.json", import.meta.url), "utf8")
|
|
),
|
|
external: [/^@tauri-apps\/api/],
|
|
});
|