mirror of
				https://github.com/strapi/strapi.git
				synced 2025-10-31 09:56:44 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			240 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			240 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| 'use strict';
 | |
| 
 | |
| const path = require('path');
 | |
| 
 | |
| module.exports = ({ env }) => ({
 | |
|   graphql: {
 | |
|     enabled: true,
 | |
|     config: {
 | |
|       amountLimit: 50,
 | |
|       depthLimit: 10,
 | |
|       apolloServer: {
 | |
|         tracing: true,
 | |
|       },
 | |
|     },
 | |
|   },
 | |
| });
 | 
