Entrypoints

app.config.ts

Edit this page

The app.config.ts is the root of every SolidStart app and the main point of configuration. This file exports a configuration for SolidStart, Vinxi, Vite and Nitro. The easiest way to generate a configuration is to use the defineConfig helper.

Here defineConfig is used to create a minimal configuration with default settings.

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

To see more configuration options, see defineConfig.

Report an issue with this page