1️⃣ Create your config file
Create a config file in your project root or inside config/ folder (optional if you're using fallback only):
1// custom.config.js2export default {3 port: 3000,4 debug: true,5 database: {6 host: 'localhost',7 user: 'root'8 }9};