Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 1.2 KB

-server.md

File metadata and controls

31 lines (23 loc) · 1.2 KB
title toc
.server modules
false

.server modules

While not strictly necessary, .server modules are a good way to explicitly mark entire modules as server-only. The build will fail if any code in a .server file or .server directory accidentally ends up in the client module graph.

app
├── .server 👈 marks all files in this directory as server-only
│   ├── auth.ts
│   └── db.ts
├── cms.server.ts 👈 marks this file as server-only
├── root.tsx
└── routes
    └── _index.tsx

.server modules must be within your Remix app directory.

Refer to the Route Module section in the sidebar for more information.

.server directories are only supported when using Remix Vite. The Classic Remix Compiler only supports .server files.

When using the Classic Remix Compiler, .server modules are replaced with empty modules and will not result in a compilation error. Note that this can result in runtime errors.