How to create multiple output paths in Webpack config

Does anyone know how to create multiple output paths in a webpack.config.js file? I’m using bootstrap-sass which comes with a few different font files, etc. For webpack to process these i’ve included file-loader which is working correctly, however the files it outputs are being saved to the output path i specified for the rest of … Read more

Using logging in multiple modules

I have a small python project that has the following structure – Project — pkg01 — test01.py — pkg02 — test02.py — logging.conf I plan to use the default logging module to print messages to stdout and a log file. To use the logging module, some initialization is required – import logging.config logging.config.fileConfig(‘logging.conf’) logger = … Read more