first commit

This commit is contained in:
unknown
2023-01-27 20:50:01 +08:00
commit a5e17d8c5d
69 changed files with 12547 additions and 0 deletions

48
next.config.js Normal file
View File

@ -0,0 +1,48 @@
/**
* @type {import('next').NextConfig}
*/
module.exports = {
images: {
formats: ['image/avif', 'image/webp'],
},
reactStrictMode: true,
async redirects() {
return [
{
destination: '/',
permanent: true,
source: '/index.html',
},
{
destination: '/',
permanent: true,
source: '/games_list.html',
},
{
destination: '/rules',
permanent: true,
source: '/the_rules_of_draughts.html',
},
{
destination: '/strategies',
permanent: true,
source: '/strategies_for_draughts.html',
},
{
destination: '/history',
permanent: true,
source: '/the_evolution_of_draughts.html',
},
{
destination: '/history',
permanent: true,
source: '/variations_for_the_game_of_draughts.html',
},
{
destination: '/history',
permanent: true,
source: '/the_history_of_draughts.html',
},
];
},
};