mirror of
https://github.com/MetaFam/TheGame.git
synced 2026-04-24 03:00:09 -04:00
21 lines
431 B
JavaScript
21 lines
431 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,
|
|
},
|
|
];
|
|
},
|
|
future: {
|
|
webpack5: true,
|
|
},
|
|
}),
|
|
);
|