/ embark.json
embark.json
1 { 2 "contracts": ["contracts/**"], 3 "app": { 4 "js/dapp.js": ["app/dapp.js"], 5 "index.html": "app/index.html", 6 "images/": ["app/images/**"], 7 "css/bootstrap.min.css": "node_modules/bootstrap/dist/css/bootstrap.min.css" 8 }, 9 "buildDir": "dist/", 10 "config": "config/", 11 "versions": { 12 "solc": "0.5.8" 13 }, 14 "plugins": { 15 }, 16 "options": { 17 "solc": { 18 "optimize": false, 19 "optimize-runs": 200 20 } 21 }, 22 "generationDir": "embarkArtifacts" 23 }