Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/netzo/deps/@unocss/core.ts>ContentOptions

Full-stack Deno framework for building business web apps like internal tools, dashboards, admin panels and automated workflows.
Go to Latest
interface ContentOptions
import { type ContentOptions } from "https://deno.land/x/netzo@0.4.42/deps/@unocss/core.ts";

Properties

optional
filesystem: string[]

Glob patterns to extract from the file system, in addition to other content sources.

In dev mode, the files will be watched and trigger HMR.

optional
inline: (string | { code: string; id?: string; } | (() => Awaitable<string | { code: string; id?: string; }>))[]

Inline text to be extracted

optional
pipeline: false | { include?: FilterPattern; exclude?: FilterPattern; }

Filters to determine whether to extract certain modules from the build tools' transformation pipeline.

Currently only works for Vite and Webpack integration.

Set false to disable.

optional
deprecated
plain: (string | { code: string; id?: string; })[]