Skip to content

Latest commit

 

History

History
17 lines (12 loc) · 736 Bytes

File metadata and controls

17 lines (12 loc) · 736 Bytes
title app.config.ts

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.