cms.nicwands.com/config/server.ts
2026-06-02 20:19:11 -04:00

11 lines
267 B
TypeScript

import type { Core } from '@strapi/strapi';
const config = ({ env }: Core.Config.Shared.ConfigParams): Core.Config.Server => ({
host: env('HOST', '0.0.0.0'),
port: env.int('PORT', 1337),
app: {
keys: env.array('APP_KEYS'),
},
});
export default config;