Skip to content

Commit

Permalink
ignore eslint issues during the build
Browse files Browse the repository at this point in the history
  • Loading branch information
napalmpapalam committed Nov 23, 2023
1 parent 3d48cbd commit 4b715d5
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .env
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
NEXT_PUBLIC_PORT=8095
NEXT_PUBLIC_URL="http://localhost:8095"
NEXT_PUBLIC_CHAIN_ID="rarimo"
NEXT_PUBLIC_CHAIN_ADDR_PREFIX="rarimo"
NEXT_PUBLIC_CHAIN_NAME="Rarimo"
NEXT_PUBLIC_DENOM="STAKE"
NEXT_PUBLIC_MINIMAL_DENOM="stake"
NEXT_PUBLIC_GAS_PRICE_STEP_LOW=0
NEXT_PUBLIC_GAS_PRICE_STEP_AVG=0.1
NEXT_PUBLIC_GAS_PRICE_STEP_HIGH=0.5
NEXT_PUBLIC_GAS_PRICE=0
NEXT_PUBLIC_DEVNET_URL="https://scan.mainnet-beta.rarimo.com"
NEXT_PUBLIC_TESTNET_URL=""
NEXT_PUBLIC_MAINNET_URL="https://scan.rarimo.com"
NEXT_PUBLIC_CHAIN_API_URL="https://rpc-api.node1.mainnet-beta.rarimo.com"
NEXT_PUBLIC_CHAIN_RPC_URL="https://rpc.node1.mainnet-beta.rarimo.com"
NEXT_PUBLIC_GRAPHQL_URL="https://hasura.mainnet-beta.rarimo.com/v1/graphql"
NEXT_PUBLIC_PROTOCOL_ENV="devnet"
3 changes: 3 additions & 0 deletions next.config.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
/** @type {import('next').NextConfig} */
module.exports = {
eslint: {
ignoreDuringBuilds: true,
},
webpack: (config, { buildId, dev, isServer, defaultLoaders, webpack }) => {
config.externals.push({
'utf-8-validate': 'commonjs utf-8-validate',
Expand Down

0 comments on commit 4b715d5

Please sign in to comment.