http://www.zp11108.tld.122.155.17.167.no-domain.name
Thanks for using the one-fits-all
flavor.
Run in development mode: npm start
Build a production build: npm run build
Run the unit tests: npm test
If you want to add custom config to webpack, you can do it! Just edit the webpack.config.js
in your app's root directory. It will be merged with the default config.
Example: Adding the progress bar plugin:
const ProgressBarPlugin = require('progress-bar-webpack-plugin');
module.exports = {
plugins: [
new ProgressBarPlugin()
]
}
Example: Add API proxy for devServer
module.exports = {
devServer: {
proxy: {
"/api": "http://localhost:3000"
}
}
}