1
0
mirror of https://github.com/chinchang/web-maker.git synced 2025-10-14 04:54:24 +02:00

setup redirects

This commit is contained in:
Kushagra Gour
2024-02-28 17:49:57 +05:30
parent 8877651a0b
commit 9c3de5d235
3 changed files with 8 additions and 8 deletions

View File

@@ -2,23 +2,23 @@ export default [
{
id: 'react',
title: 'React',
img: 'assets/react-logo.svg'
img: '/assets/react-logo.svg'
},
{
id: 'vue',
title: 'Vue',
img: 'assets/vue-logo.svg',
img: '/assets/vue-logo.svg',
isFileModeSupported: true
},
{
id: 'preact',
title: 'Preact',
img: 'assets/preact-logo.svg'
img: '/assets/preact-logo.svg'
},
{
id: 'kontra-game-engine',
title: 'Kontra Game Engine',
img: 'assets/html5-logo.svg',
img: '/assets/html5-logo.svg',
isFileModeSupported: true
}
];