Created
July 2, 2017 03:24
-
-
Save romanonthego/c371a301e953ee9ed807f93c8dfdf859 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// browser webpack-config | |
resolve: { | |
alias: { | |
'firebaseImport$': path.join('path', 'to', 'your', 'firebaseImport.browser.js') | |
} | |
} | |
// ... | |
// server webpack-config | |
resolve: { | |
alias: { | |
'firebaseImport$': path.join('path', 'to', 'your', 'firebaseImport.server.js') | |
} | |
} | |
// ... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment