Add eslint config, add gitignore, fix some style

This commit is contained in:
2025-10-02 16:54:08 +02:00
parent 9665550002
commit 9c0e98869b
6 changed files with 745 additions and 8 deletions

View File

@@ -1 +1,3 @@
{}
{
"tab-width": 4
}

View File

@@ -1,2 +1,2 @@
import "@fortawesome/fontawesome-free/css/all.css";
import "modern-normalize/modern-normalize.css";
import '@fortawesome/fontawesome-free/css/all.css';
import 'modern-normalize/modern-normalize.css';

View File

@@ -1,6 +1,7 @@
export default {
server: {
host: '0.0.0.0',
port: 5173,
},
}
'server': {
'host': '0.0.0.0',
'port': 5173,
},
};