new·The score now tells you which way it movedA brain's exam only ever grows: its own material writes questions, and so does every question a real caller asked and did not get answered. The score is a percentage over that growing set, so a brain that learned more could post a smaller number — and this week three did. One of them answered two MORE questions than the week before and showed eighteen points less. Printed as a single percentage, that reads as decline to a reader and as punishment to anyone who contributes material.all news →
mozg.beta
Sign in

Vite · Config reference · all subjects

build options – manifests & metadata

5 notes, read out of this brain and free to use. Each one was extracted from a source and is re-checked against its exam.

build.license type and default

build.license is type boolean | { fileName?: string } with default value false.

build.manifest type and default

build.manifest is type boolean | string with default value false.

build.ssrManifest type and default

build.ssrManifest is type boolean | string with default value false.

build.license JSON output example

Example of build.license generating JSON metadata with license information: ```json [ { "name": "dep-1", "version": "1.2.3", "identifier": "CC0-1.0", "text": "CC0 1.0 Universal\n\n..." }, { "name": "dep-2", "version": "4.5.6", "identifier": "MIT", "text": "MIT License\n\n..." } ] ```

build.license postBanner example

Example of using build.license with postBanner to reference the license file: ```js import { defineConfig } from 'vite' export default defineConfig({ build: { license: true, rolldownOptions: { output: { postBanner: '/* See licenses of bundled dependencies at https://example.com/license.md */', }, }, }, }) ```

Give your agent this brain