This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { createRouter, createWebHistory } from 'vue-router'; | |
import routes from '~pages'; | |
const router = createRouter({ | |
history: createWebHistory(import.meta.env.BASE_URL), | |
routes: routes, | |
}); | |
router.onError((err) => { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const subjects = [ | |
{ | |
name: "Quizzes", | |
icon_custom_emoji_id: "5433614043006903194", | |
text: "Quizzes Topic", | |
}, | |
// etc | |
]; | |
const telegramToken = ""; | |
const chatId = ""; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"preset": "laravel", | |
"rules": { | |
"array_indentation": true, | |
"array_syntax": { | |
"syntax": "short" | |
}, | |
"binary_operator_spaces": { | |
"default": "single_space" | |
}, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
use PhpCsFixer\Config; | |
use PhpCsFixer\Finder; | |
$rules = [ | |
'array_indentation' => true, | |
'array_syntax' => ['syntax' => 'short'], | |
'binary_operator_spaces' => [ | |
'default' => 'single_space', |