So I have struggled with this for a long time now. First you need the coresponding libraries npm i -g @babel/core@^7.2.2 npm i -g @babel/preset-env@^7.3.1 npm i -g @babel/preset-react@^7.0.0 npm i -g autoprefixer@^9.5.0 npm i -g babel-loader@^8.0.5 npm i -g css-loader npm i -g extract-text-webpack-plugin@next npm i -g generate-template-files npm i -g mini-css-extract-plugin npm i
ARCHIVE
Posted on September 26 2018 / in Tips
To see current processes do this in terminal sudo lsof -i ':80' To stop the built in apache server in Mac OS X do sudo apachectl stop
Posted on September 25 2018 / in Tips
best option would be to use cpanel option if avaialble recommandation Install brew brew install certbot use this command certbot --apache -d yourdomain.com this might also work sudo certbot certonly --manual create the file requested
Posted on September 21 2018 / in Javascript, Tutorial
The only solution I found is having this in the return statement of the reducer return { ...state ,[topic_id]:{ ...state[topic_id] ,matches:[ ...state[topic_id].matches ,subticket ] } } ; If there are other solutions, let me know please. The state structure looks like this
Posted on September 11 2018 / in Tips
Go to your project write heroku login then git add . git commit -m "update" git push heroku master
Posted on September 11 2018 / in Tips
Disable for specific page add this on top of the file /* eslint-disable */ Disable for whole project Create a file named .eslintignore and enter **/*
Posted on September 5 2018
Write this error_reporting(E_ALL); ini_set('display_startup_errors', 1); ini_set('display_errors', 1);
Recent Comments