@app-config/rollup
v2.9.0-beta.1
Published
Rollup plugin that resolves @app-config for you
Downloads
23
Readme
App Config Rollup
Use app-config with rollup.
Install:
yarn add -D @app-config/rollup
Add to your rollup.config.js
:
import appConfigRollup from '@app-config/rollup';
export default {
input: 'src/index.js',
output: {
file: 'dist/index.js',
format: 'cjs',
},
plugins: [appConfigRollup()],
};
This will allow you to use the config
export from @app-config/main
without calling loadConfig
!