-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #44 from JaZo/feature/vuetify
Migrate to Vuetify and Vue 3
- Loading branch information
Showing
52 changed files
with
10,263 additions
and
9,914 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
> 1% | ||
last 2 versions | ||
not ie <= 8 | ||
not dead | ||
not ie 11 |
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
This file was deleted.
Oops, something went wrong.
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,24 @@ | ||
<!DOCTYPE html> | ||
<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.0"> | ||
<title><%- title %></title> | ||
<link href="https://fonts.googleapis.com/css?family=Roboto:400,500,700,400italic|Material+Icons" rel="stylesheet"> | ||
<link rel="icon" href="<%- base %>favicon.ico"> | ||
<link rel="icon" type="image/png" sizes="32x32" href="<%- base %>img/icons/favicon-32x32.png"> | ||
<link rel="icon" type="image/png" sizes="16x16" href="<%- base %>img/icons/favicon-16x16.png"> | ||
<meta name="theme-color" content="#448AFF"> | ||
<meta name="apple-mobile-web-app-capable" content="yes"> | ||
<meta name="apple-mobile-web-app-status-bar-style" content="default"> | ||
<meta name="apple-mobile-web-app-title" content="<%- title %>"> | ||
<link rel="apple-touch-icon" href="<%- base %>img/icons/apple-touch-icon-152x152.png"> | ||
<link rel="mask-icon" href="<%- base %>img/icons/safari-pinned-tab.svg" color="#448AFF"> | ||
<meta name="msapplication-TileImage" content="<%- base %>img/icons/msapplication-icon-144x144.png"> | ||
<meta name="msapplication-TileColor" content="#000000"> | ||
<script type="module" src="/src/main.js"></script> | ||
</head> | ||
<body> | ||
<noscript> | ||
<strong>We're sorry but <%- title %> doesn't work properly without JavaScript enabled. Please enable it to continue.</strong> | ||
</noscript> | ||
<div id="app"></div> | ||
</body> | ||
<head> | ||
<meta charset="UTF-8"/> | ||
<link rel="icon" href="/favicon.ico"/> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"/> | ||
<title><%- title %></title> | ||
<link rel="icon" href="<%- base %>favicon.ico"> | ||
<link rel="icon" type="image/png" sizes="32x32" href="<%- base %>img/icons/favicon-32x32.png"> | ||
<link rel="icon" type="image/png" sizes="16x16" href="<%- base %>img/icons/favicon-16x16.png"> | ||
<meta name="theme-color" content="#448AFF"> | ||
<meta name="apple-mobile-web-app-capable" content="yes"> | ||
<meta name="apple-mobile-web-app-status-bar-style" content="default"> | ||
<meta name="apple-mobile-web-app-title" content="<%- title %>"> | ||
<link rel="apple-touch-icon" href="<%- base %>img/icons/apple-touch-icon-152x152.png"> | ||
<link rel="mask-icon" href="<%- base %>img/icons/safari-pinned-tab.svg" color="#448AFF"> | ||
<meta name="msapplication-TileImage" content="<%- base %>img/icons/msapplication-icon-144x144.png"> | ||
<meta name="msapplication-TileColor" content="#000000"> | ||
</head> | ||
<body> | ||
<div id="app"></div> | ||
<script type="module" src="/src/main.js"></script> | ||
</body> | ||
</html> |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
{ | ||
"compilerOptions": { | ||
"allowJs": true, | ||
"target": "es5", | ||
"module": "esnext", | ||
"baseUrl": "./", | ||
"moduleResolution": "bundler", | ||
"paths": { | ||
"@/*": [ | ||
"src/*" | ||
] | ||
}, | ||
"lib": [ | ||
"esnext", | ||
"dom", | ||
"dom.iterable", | ||
"scripthost" | ||
] | ||
} | ||
} |
Oops, something went wrong.