You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
# Neutrino Customization
|
|
|
|
|
|
|
|
No two JavaScript projects are ever the same, and as such there may be times when you will need to make modifications
|
|
|
|
to the way your Neutrino preset is building your project. Neutrino provides two ways you can augment a preset in the
|
|
|
|
context of a project without resorting to creating and publishing an entirely independent preset.
|
|
|
|
|
|
|
|
### Simple Customization
|
|
|
|
|
|
|
|
By defining a configuration object within your package.json, Neutrino will merge this information with that provided by
|
|
|
|
your presets, overriding those options with your custom configuration.
|
|
|
|
|
|
|
|
### Advanced Customization
|
|
|
|
|
|
|
|
You can also create a configuration override directly in your project which can extend the presets you are using.
|
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
Continue for details on each technique.
|