File size: 380 Bytes
7948ff4
e5c2fd4
1a84032
 
e5c2fd4
 
 
43dd1ac
8f24b44
43dd1ac
 
 
 
 
 
 
 
 
8f24b44
e5c2fd4
7948ff4
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/** @type {import('next').NextConfig} */
const nextConfig = {
  output: 'standalone',
  
  experimental: {
    serverActions: true,
  },

  /*
  async redirects() {
    return [
      {
        source: '/api/download/:id*',
        destination: `${process.env.VC_VIDEOCHAIN_API_URL}/download/:id*`,
        permanent: true,
      },
    ]
  },
  */
}

module.exports = nextConfig