https://github.com/feliciousx/crypto-graph
https://github.com/feliciousx/crypto-graph
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/feliciousx/crypto-graph
- Owner: FeliciousX
- Created: 2017-06-09T11:19:05.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2017-06-09T11:20:40.000Z (about 9 years ago)
- Last Synced: 2025-07-02T16:08:59.747Z (about 1 year ago)
- Language: TypeScript
- Size: 58.6 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Your amazing project
Thanks for using the `one-fits-all` flavor.
### Using your app
Run in development mode: `npm start`
Build a production build: `npm run build`
Run the unit tests: `npm test`
### Extending the configuration
If you want to add custom config to babel or webpack, you can now do it! Just add a `.babelrc` or `webpack.config.js` respectively to your app root directory. The `webpack.config.js` just has to export a partial webpack config. It will be merged with the default config.
Example: Adding the progress bar plugin:
```javascript
// /path/to/your/app/webpack.config.js
const ProgressBarPlugin = require('progress-bar-webpack-plugin');
module.exports = {
plugin: [
new ProgressBarPlugin()
]
}
```