This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "Moa Test Pool", | |
"description": "The pool that tests all the pools", | |
"ticker": "MOA", | |
"homepage": "https://moa.stakepool.co.nz" | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// webpack.dev.js - developmental builds | |
const LEGACY_CONFIG = "legacy"; | |
const MODERN_CONFIG = "modern"; | |
// node modules | |
const merge = require("webpack-merge"); | |
const path = require("path"); | |
const webpack = require("webpack"); | |
const DashboardPlugin = require("webpack-dashboard/plugin"); |