Skip to content

Commit

Permalink
chore: main file
Browse files Browse the repository at this point in the history
  • Loading branch information
Sleepy4k committed Jun 30, 2023
1 parent a69eacb commit 0fe7b9f
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 4 deletions.
1 change: 1 addition & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ module.exports = {
['@utils', './src/utils'],
['@consts', './src/consts'],
['@layouts', './src/layouts'],
['@contexts', './src/contexts'],
['@services', './src/services'],
['@components', './src/components'],
]
Expand Down
15 changes: 15 additions & 0 deletions .hintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"extends": [
"development"
],
"hints": {
"button-type": "off",
"axe/name-role-value": [
"default",
{
"button-name": "off"
}
],
"typescript-config/consistent-casing": "off"
}
}
9 changes: 7 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,19 @@
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" />

<meta name="author" content="sleepy4k">
<meta name="keywords" content="scholarship, sholarmate, solidjs">
<meta name="description" content="Scholarmate user interface using solidjs framework with tailwind and typescript">

<title>Solid App</title>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>

<script src="/src/index.tsx" type="module"></script>
<script src="./src/index.tsx" type="module"></script>
</body>
</html>
1 change: 1 addition & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
"@utils": ["./src/utils"],
"@consts": ["./src/consts"],
"@layouts": ["./src/layouts"],
"@contexts": ["./src/contexts"],
"@services": ["./src/services"],
"@components": ["./src/components"]
}
Expand Down
5 changes: 3 additions & 2 deletions vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,12 @@ export default defineConfig({
resolve: {
alias: {
'@': resolve(__dirname, './src'),
'@components': resolve(__dirname, './src/components'),
'@utils': resolve(__dirname, './src/utils'),
'@consts': resolve(__dirname, './src/consts'),
'@layouts': resolve(__dirname, './src/layouts'),
'@contexts': resolve(__dirname, './src/contexts'),
'@services': resolve(__dirname, './src/services'),
'@utils': resolve(__dirname, './src/utils'),
'@components': resolve(__dirname, './src/components'),
}
},
server: {
Expand Down

0 comments on commit 0fe7b9f

Please sign in to comment.