trufflesuite / trufflesuite.com

Trufflesuite website source ✨
https://trufflesuite.com
182 stars 421 forks source link

Dashboard configuration example is wrong #1410

Open gnidan opened 1 year ago

gnidan commented 1 year ago

In this section of the docs, configuring the Dashboard host/port/etc. is listed as:

module.exports = {
  port: 24012,
  host: "localhost",
  verbose: false,
};

When it should be (IIRC, please verify):

module.exports = {
  // ... rest of truffle-config.js ...

  dashboard: {
    port: 24012,
    host: "localhost",
    verbose: false
  }
};