forked from randao/randao
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtruffle-config.js
More file actions
34 lines (34 loc) · 789 Bytes
/
truffle-config.js
File metadata and controls
34 lines (34 loc) · 789 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
module.exports = {
networks: {
development: {
host: "127.0.0.1",
port: 8545,
network_id: "*", // Match any network id
gas: 5000000
}
},
compilers: {
solc: {
settings: {
optimizer: {
enabled: true, // Default: false
runs: 200 // Default: 200
},
}
}
},
build: {
// Copy ./app/index.html (right hand side) to ./build/index.html.
"index.html": "index.html",
"app.js": [
// Paths relative to "app" directory that should be
// concatenated and processed during build.
"javascripts/app.js"
],
"app.css": [
// Paths relative to "app" directory that should be
// concatenated and processed during build.
"stylesheets/app.css"
]
}
};