style: format codebase

This commit is contained in:
Jewgeni Lewash 2024-02-17 12:27:11 +01:00
parent 7496556918
commit b8d3f2d073
3 changed files with 12 additions and 12 deletions

View File

@ -1,3 +1,3 @@
import { defineConfig } from "astro/config"; import { defineConfig } from 'astro/config';
export default defineConfig({}); export default defineConfig({});

2
src/env.d.ts vendored
View File

@ -1 +1 @@
/// <reference types="astro/client" /> /// <reference types="astro/client" />

View File

@ -1,13 +1,13 @@
<!doctype html> <!doctype html>
<html lang="en"> <html lang="en">
<head> <head>
<meta charset="UTF-8" /> <meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Astro Deploy</title> <title>Astro Deploy</title>
</head> </head>
<body> <body>
<main> <main>
<div>Hello World</div> <div>Hello World</div>
</main> </main>
</body> </body>
</html> </html>