owncast/web/next.config.js

14 lines
292 B
JavaScript
Raw Normal View History

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