Skip to content

Commit

Permalink
fix codacy reported issues
Browse files Browse the repository at this point in the history
  • Loading branch information
Muska-Ami committed Sep 6, 2024
1 parent 6e0a349 commit 5efb849
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 25 deletions.
1 change: 1 addition & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
package.json
_deprecated/
32 changes: 16 additions & 16 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
<!DOCTYPE html>
<!doctype html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8"/>
<link rel="icon" type="image/svg+xml" href="/favicon.ico"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>LoCyanFrp 2 Dashboard</title>
<script async src="https://www.googletagmanager.com/gtag/js?id=G-KWN2LXQ8RV"></script>
<script>
window.dataLayer = window.dataLayer || [];
window.dataLayer = window.dataLayer || []

function gtag() {
dataLayer.push(arguments);
}
function gtag() {
dataLayer.push(arguments)
}

gtag('js', new Date());
gtag('js', new Date())

gtag('config', 'G-KWN2LXQ8RV');
gtag('config', 'G-KWN2LXQ8RV')
</script>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.js"></script>
</body>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.js"></script>
</body>
</html>
4 changes: 2 additions & 2 deletions postcss.config.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
export default {
plugins: {
tailwindcss: {},
autoprefixer: {},
},
autoprefixer: {}
}
}
11 changes: 4 additions & 7 deletions tailwind.config.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,8 @@
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{vue,js,ts,jsx,tsx}",
],
content: ['./index.html', './src/**/*.{vue,js,ts,jsx,tsx}'],
theme: {
extend: {},
extend: {}
},
plugins: [],
}
plugins: []
}

0 comments on commit 5efb849

Please sign in to comment.