Configure Rollup to bundle Axios module
May 25, 2021
npm install rollup-plugin-node-resolve rollup-plugin-json
.Add it to the plugins inside
rollup.config.js
// Rollup configuration...plugins: [rollupNodeResolve({jsnext: true,preferBuiltins: true,browser: true}),rollupJson(),...]
Notice the browser: true
- Run your build again:
yarn run build
Voila!
Edit on githubTweet