When using the following rollup.config.js ```javascript import resolve from 'rollup-plugin-node-resolve'; import commonjs from 'rollup-plugin-commonjs'; import babel from 'rollup-plugin-babel'; export default [ { experimentalCodeSplitting: true, input: [ './index.jsx', './page1.jsx' ], output: { dir: './dist', format: 'system' }, manualChunks: { 'vendor': ['react'] }, plugins: [ resolve({ extensions: ['.jsx', '.js'] }), commonjs(), babel({ exclude: 'node_modules/**' }) ] } ]; ```` Rollup gives the error "Could not resolve entry (react)". If I remove the `manualChunks` option everything works fine. I'm opening this issue because of the discussion in https://github.com/rollup/rollup/issues/2248
When using the following rollup.config.js
Rollup gives the error "Could not resolve entry (react)". If I remove the
manualChunksoption everything works fine.I'm opening this issue because of the discussion in rollup/rollup#2248