app.config.ts

app.config.ts is the app configuration entrypoint.


Import

import { defineConfig } from "@solidjs/start/config";

Type

export default defineConfig(baseConfig);

Parameters

app.config.ts passes its configuration object to defineConfig.


Return value

The default export is the value returned by defineConfig.


Behavior

  • The config entry uses @solidjs/start/config.
  • This file is read as the app configuration file.

Examples

Basic usage

import { defineConfig } from "@solidjs/start/config";
export default defineConfig({});

Last updated: 5/6/26, 4:10 AMEdit this pageReport an issue with this page