feat: add error handling to player creation and update gitignore for agent
This commit is contained in:
18
next.config.ts
Normal file
18
next.config.ts
Normal file
@@ -0,0 +1,18 @@
|
||||
import type { NextConfig } from "next";
|
||||
|
||||
const nextConfig: NextConfig = {
|
||||
typescript: {
|
||||
ignoreBuildErrors: true,
|
||||
},
|
||||
// Proxy para o Minio - Isso resolve o problema de DNS e AdBlock
|
||||
async rewrites() {
|
||||
return [
|
||||
{
|
||||
source: '/storage/:path*',
|
||||
destination: 'http://minio:9000/:path*',
|
||||
},
|
||||
]
|
||||
},
|
||||
};
|
||||
|
||||
export default nextConfig;
|
||||
Reference in New Issue
Block a user