roxiness/routify-starter

How to configure 3rd-party dependencies

Closed this issue · 1 comments

How to configure 3rd-party dependencies and put

external: ['xxxxxxxxx'],
globals:

in rollup.config.js

If you mean how to attach them to the rollup config:

// rollup.config.js
rollupWrapper: rollup => {
  rollup.external = ['xxxxxxx']
  rollup.globals = ...
}