updates for example deployment
This commit is contained in:
parent
e1c4f0591d
commit
450a096ebe
|
@ -76,3 +76,6 @@ node_modules/
|
||||||
|
|
||||||
# Turborepo
|
# Turborepo
|
||||||
.turbo
|
.turbo
|
||||||
|
|
||||||
|
# Vercel
|
||||||
|
.vercel
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "parcel index.html --https --no-cache --open",
|
"dev": "parcel index.html --https --no-cache --open",
|
||||||
"prebuild": "rm -rf dist",
|
"prebuild": "rm -rf dist",
|
||||||
"build": "parcel build index.html"
|
"build": "parcel build index.html --no-cache"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@status-im/react": "0.1.0-alpha.2",
|
"@status-im/react": "0.1.0-alpha.2",
|
||||||
|
|
|
@ -10,7 +10,7 @@ if (!publicKey) {
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
const environment = process.env.ENVIRONMENT
|
const environment = process.env.ENVIRONMENT as 'production' | 'test'
|
||||||
|
|
||||||
export const App = () => {
|
export const App = () => {
|
||||||
return (
|
return (
|
||||||
|
|
Loading…
Reference in New Issue