Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/sferadev/rollup-plugin-import-cdn


https://github.com/sferadev/rollup-plugin-import-cdn

Last synced: 27 days ago
JSON representation

Awesome Lists containing this project

README

        

# rollup-plugin-import-cdn

Import ESM modules from URL for local use and be processed by rollup, allowing to apply tree-shaking on non-local resources.

Code based from https://github.com/UpperCod/rollup-plugin-import-url

## Install

```
npm install rollup-plugin-import-cdn
```

## Usage

```js
import { importCdn } from "rollup-plugin-import-cdn";

export default {
plugins: [importCdn()],
};
```