Files
url_tracker_tool/node_modules/react-dropzone/rollup.config.js
Andrei 58f8093689 Rebrand from 'Redirect Intelligence v2' to 'URL Tracker Tool V2' throughout UI
- Updated all component headers and documentation
- Changed navbar and footer branding
- Updated homepage hero badge
- Modified page title in index.html
- Simplified footer text to 'Built with ❤️'
- Consistent V2 capitalization across all references
2025-08-19 19:12:23 +00:00

34 lines
776 B
JavaScript

const { nodeResolve } = require("@rollup/plugin-node-resolve");
const commonjs = require("@rollup/plugin-commonjs");
const { babel } = require("@rollup/plugin-babel");
const { terser } = require("rollup-plugin-terser");
const umdGlobals = {
react: "React",
"prop-types": "PropTypes",
};
module.exports = [
{
input: "./src/index.js",
output: {
file: "dist/index.js",
format: "umd",
name: "reactDropzone",
globals: umdGlobals,
sourcemap: "inline",
exports: "named",
},
external: Object.keys(umdGlobals),
plugins: [
nodeResolve(),
commonjs({ include: "**/node_modules/**" }),
babel({
exclude: "**/node_modules/**",
babelHelpers: "bundled",
}),
terser(),
],
},
];