mirror of
				https://github.com/strapi/strapi.git
				synced 2025-10-31 09:56:44 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			214 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			214 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| module.exports = ({ env }) => ({
 | |
|   host: env('HOST', '0.0.0.0'),
 | |
|   port: env.int('PORT', 1337),
 | |
|   admin: {
 | |
|     // autoOpen: true,
 | |
|     auth: {
 | |
|       secret: env('ADMIN_JWT_SECRET', 'example-token'),
 | |
|     },
 | |
|   },
 | |
| });
 | 
