Open andrewaclark248 opened 5 months ago
I have a created a app with create-react-app, however when I deploy the app on Heroku I keep getting memory leaks. For reference am using the below. Link to my app is below. Any idea what is going on?
https://github.com/andrewaclark248/SafeTexting
client/package.json
"scripts": { "start": "react-dotenv && react-scripts start", "build": "react-dotenv && react-scripts build", "test": "react-scripts test", "eject": "react-scripts eject", "deploy": "npx serve -s build" },
package.json
"scripts": { "start": "cd client && npm run start", "install": "cd client && npm i", "build": "cd client && npm run build", "install:build": "npm run install && npm run build", "deploy": "npm run install:build && cd client && npm run deploy" },
Procfile web: npm run deploy
web: npm run deploy
I have a created a app with create-react-app, however when I deploy the app on Heroku I keep getting memory leaks. For reference am using the below. Link to my app is below. Any idea what is going on?
https://github.com/andrewaclark248/SafeTexting
client/package.json
package.json
Procfile
web: npm run deploy