Skip to main content
Module

x/aleph/types.ts>Config

The Full-stack Framework in Deno.
Very Popular
Go to Latest
type alias Config
import { type Config } from "https://deno.land/x/aleph@v0.3.0-alpha.16/types.ts";

The config for the aleph server application.

definition: { framework?: "react"; buildTarget?:
| "es5"
| "es2015"
| "es2016"
| "es2017"
| "es2018"
| "es2019"
| "es2020"
; baseUrl?: string; srcDir?: string; outputDir?: string; defaultLocale?: string; locales?: string[]; ssr?: boolean | SSROptions; plugins?: Plugin[]; headers?: Record<string, string>; rewrites?: Record<string, string>; env?: Record<string, string>; }