Random 3 Flashcards
How to create a new company in DTR
0) Can add as Homer
1) Administrators | Add Administrator (“Jeff Benson”, “blaster151+badmin@gmail.com”)
2) open the .eml in Outlook and click through
3) fill out and Create My Account
4) go to Company | Offices | Add (and add one)
5) go to Members | Add Member (and add an agent: “My Self”, “blaster151+agent@gmail.com”)
6) go to Transactions and add a room
Turn on source maps in webpack
Add to webpack config
devtool: ‘source-map’,
source-map-explorer: view JSON instead of visualization
–json: output JSON instead of displaying a visualization
sourcemaps can be inline
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJm…
webpack plugin to ignore certain modules
plugins: [new webpack.IgnorePlugin(/^(mv|rim-raf|source-map-support)$/)]
there is a loader that can strip certain things out of your code
loaders: [{ test: /.js$/, loader: WebpackStrip.loader(‘logger.debug’, ‘logger.info’, ‘console.log’) }]