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

Nuxt · API · all subjects

directory-structure

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

.nuxt directory purpose

The .nuxt/ directory is used by Nuxt in development to generate your Vue application. This directory should be added to .gitignore to avoid pushing dev build output to your repository.

.nuxt directory regeneration

The entire .nuxt/ directory is re-created when running 'nuxt dev', so files inside should not be manually edited.

Virtual File System (VFS) in .nuxt

Nuxt provides a Virtual File System (VFS) that allows modules to add templates to the .nuxt/ directory without writing them to disk.

Exploring generated files with DevTools

You can explore the generated files in the .nuxt/ directory by opening the Nuxt DevTools in development mode and navigating to the Virtual Files tab.

.output directory purpose

Nuxt creates the .output/ directory when building your application for production. This directory is used to deploy your Nuxt application to production.

.output directory should be in .gitignore

The .output directory should be added to your .gitignore file to avoid pushing the build output to your repository.

.output directory is regenerated on build

The entire .output directory is re-created when running 'nuxt build'. Files inside should not be manually touched as they will be overwritten.

assets directory purpose

The assets/ directory is used to add all the website's assets that the build tool will process.

assets directory file types

The assets/ directory typically contains stylesheets (CSS, SASS, etc.), fonts, and images that won't be served from the public/ directory.

assets vs public directory

For serving assets from the server, the public/ directory should be used instead of assets/. The assets/ directory is for assets that the build tool will process.

Give your agent this brain