Skip to main content

Create Abyss App Deprecated

Starting an app with `create-abyss-app` is deprecated. Please refer to our Templates documentation for the recommended setup path.
View Templates

Settings

Overview

Danger

These settings are for Abyss workspaces that include a .abyss/settings.json file.

Settings help configure the backend and the build process. Abyss settings config file is called settings.json under the .abyss config directory.

├── .abyss
| ├── environments.json
| └── settings.json

Abyss Configuration

Here are the default settings:

{
"buildType": "browser-node",
"apiProxy": "http://localhost:4000"
}
Tip

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)"
}
Table of Contents