10 lines
		
	
	
	
		
			208 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
	
		
			208 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| /** @type {import('next').NextConfig} */
 | |
| module.exports = {
 | |
|   reactStrictMode: true,
 | |
| };
 | |
| 
 | |
| const withTM = require('next-transpile-modules')([
 | |
|   '@themes/signpost',
 | |
| ]);
 | |
| 
 | |
| module.exports = withTM(module.exports);
 |