@app-config/rollup
v2.9.0-beta.3
Published
Rollup plugin that resolves @app-config for you
Readme
App Config Rollup
Use app-config with rollup.
Install:
yarn add -D @app-config/rollupAdd 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!
