owncast/web/next.config.js
2022-05-08 23:28:54 -07:00

14 lines
292 B
JavaScript

const withLess = require('next-with-less');
module.exports = withLess({
trailingSlash: true,
async rewrites() {
return [
{
source: '/api/:path*',
destination: 'http://localhost:8080/api/:path*', // Proxy to Backend to work around CORS.
},
];
},
});