It appears the instructions only provide an example for how to set a custom config when using a commonjs import, ie ```javascript require('dotenv').config({ foo: "bar" }) ``` However, it is not clear how to do the same for an ES6 import. How do I set a custom config for this type of import? ```js import 'dotenv/config' ```