Skip to content
This repository has been archived by the owner on Jan 26, 2024. It is now read-only.

Commit

Permalink
fix(rollup): ensure that env dir files get bundled properly for each env
Browse files Browse the repository at this point in the history
  • Loading branch information
benox3 committed Nov 2, 2017
1 parent 6ae1273 commit 061afc9
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,11 @@ export default [
},
],
plugins: [
replace({ '/server/': '/browser/' }),
replace({
include: './src/common/**',
server: '/browser',
delimiters: ['/', ''],
}),
].concat(config.plugins),
globals: {
react: 'React',
Expand Down

0 comments on commit 061afc9

Please sign in to comment.