14 lines
		
	
	
		
			232 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			232 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| /** @type {import('next').NextConfig} */
 | |
| const basePath = process.env.BASE_PATH || ''
 | |
| 
 | |
| const nextConfig = {
 | |
|   output: 'export',
 | |
|   trailingSlash: true,
 | |
|   images: {
 | |
|     unoptimized: true
 | |
|   },
 | |
|   basePath
 | |
| }
 | |
| 
 | |
| module.exports = nextConfig
 |