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.7/types.ts";

The config for the aleph server application.

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