UNPKG

geolocator-helper

Version:

Lightweight geolocation library providing latitude, longitude, address conversion via OlaMaps API, and real-time network status detection.

11 lines (10 loc) 227 B
import { defineConfig } from "rollup"; export default defineConfig({ input: "src/index.js", output: { dir: "dist", format: "es", name: "geolocator-helper", }, external: ["react", "react-dom"], });