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": "browser-node", "apiProxy": "http://localhost:4000"}NOTE: For teams looking to export a static web server set the buildType to "browser-static".
Other settings you can use:
{ // Adds a prefix to the chunk names of your builds "buildChunkPrefix": "(your-prefix)",
// Used to specify a path prefix that will be prepended to the // API path when redirecting requests to the proxy server. "apiProxyPrefix": "(your-prefix)",
// Adds a prefix to the asset path for Next builds "assetPrefix": "(your-prefix)"}