convert to vue project, fix styling for mobile

This commit is contained in:
wea_ondara
2023-07-07 20:59:23 +02:00
parent d2ffa8a8ba
commit 651ba28a14
34 changed files with 1168 additions and 107 deletions

25
.eslintrc.cjs Normal file
View File

@@ -0,0 +1,25 @@
/* eslint-env node */
require('@rushstack/eslint-patch/modern-module-resolution');
module.exports = {
root: true,
'extends': [
'plugin:vue/vue3-essential',
'eslint:recommended',
'@vue/eslint-config-typescript',
'@vue/eslint-config-prettier/skip-formatting',
],
overrides: [
{
files: [
'cypress/e2e/**/*.{cy,spec}.{js,ts,jsx,tsx}',
],
'extends': [
'plugin:cypress/recommended',
],
},
],
parserOptions: {
ecmaVersion: 'latest',
},
};