mirror of
https://github.com/MetaFam/TheGame.git
synced 2026-01-22 20:58:01 -05:00
* player filters for type and skills * fetching multiple players in parallel * removed tile fragment * search by username or address * better spacing * availability filter * timezone filter * passing tests in ds * submit form in search bar * added better labels for timezone * fixed test issue * searching only if search >= 2 char * meta select ds * updated metabutton bg color * parallel for > 50 only * fix reset search filter
18 lines
388 B
JavaScript
18 lines
388 B
JavaScript
/* eslint-disable @typescript-eslint/no-var-requires */
|
|
const withTM = require('next-transpile-modules')(['react-timezone-select']);
|
|
const withImages = require('next-images');
|
|
|
|
module.exports = withTM(
|
|
withImages({
|
|
async redirects() {
|
|
return [
|
|
{
|
|
source: '/',
|
|
destination: '/players',
|
|
permanent: false,
|
|
},
|
|
];
|
|
},
|
|
}),
|
|
);
|