UNPKG

@osdeibi/bucky-seo-react

Version:

React component for managing meta tags, Open Graph, and dynamic JSON-LD

25 lines (23 loc) 524 B
import resolve from "@rollup/plugin-node-resolve"; import commonjs from "@rollup/plugin-commonjs"; import typescript from "rollup-plugin-typescript2"; export default { input: "src/index.ts", output: [ { file: "dist/index.js", format: "cjs", exports: "named", }, { file: "dist/index.esm.js", format: "esm", }, ], plugins: [ resolve(), commonjs(), typescript({ tsconfig: "./tsconfig.json" }), ], external: ["react", "react-dom", "react-helmet-async"], };