Overview
Note: Abyss App Starter Kit only
Settings is to help with configuration with the backend and the build process.
Abyss settings config file is called settings.json under the .abyss config directory.
├── .abyss| ├── environments.json| └── settings.jsonAbyss Configuration
Here are the default settings:
{ "buildType": "storybook-parcels", "apiProxy": "http://localhost:4000"}Other settings you can use:
{ // Adds a prefix to the chunk names of your builds "buildChunkPrefix": "(your-prefix)",
// Allows for the specification of a path prefix that should be prepended // to the outgoing API request paths when proxying to the target server. "apiProxyPrefix": "(your-prefix)",
// Enables source maps for the production build "sourceMaps": boolean true,
// enables the mutation observer for the parcel "enableMutationObserver": boolean true,}