1
0
mirror of https://github.com/chinchang/web-maker.git synced 2025-07-24 23:41:14 +02:00

fix template imgs

This commit is contained in:
Kushagra Gour
2024-04-28 21:57:30 +05:30
parent 4d45e85b90
commit 05c01d15b6

View File

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