Minimize the minimal example (#2508)
This commit is contained in:
parent
f3dafd33e7
commit
f028ce43d1
2 changed files with 4 additions and 15 deletions
|
@ -1,11 +1,6 @@
|
||||||
// Full Astro Configuration API Documentation:
|
// Full Astro Configuration API Documentation:
|
||||||
// https://docs.astro.build/reference/configuration-reference
|
// https://docs.astro.build/reference/configuration-reference
|
||||||
|
|
||||||
// @type-check enabled!
|
|
||||||
// VSCode and other TypeScript-enabled text editors will provide auto-completion,
|
|
||||||
// helpful tooltips, and warnings if your exported object is invalid.
|
|
||||||
// You can disable this by removing "@ts-check" and `@type` comments below.
|
|
||||||
|
|
||||||
// @ts-check
|
// @ts-check
|
||||||
export default /** @type {import('astro').AstroUserConfig} */ ({
|
export default /** @type {import('astro').AstroUserConfig} */ ({
|
||||||
// Comment out "renderers: []" to enable Astro's default component support.
|
// Comment out "renderers: []" to enable Astro's default component support.
|
||||||
|
|
|
@ -1,19 +1,13 @@
|
||||||
---
|
---
|
||||||
// Component imports and setup JavaScript go here!
|
|
||||||
---
|
|
||||||
|
|
||||||
|
---
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8" />
|
<meta charset="utf-8" />
|
||||||
<meta name="viewport" content="width=device-width" />
|
<meta name="viewport" content="width=device-width" />
|
||||||
<title>Welcome to Astro</title>
|
<title>Astro</title>
|
||||||
<style>
|
|
||||||
/* scoped CSS styles go here: */
|
|
||||||
/* h1 { ... } */
|
|
||||||
</style>
|
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
<h1>Welcome to <a href="https://astro.build/">Astro</a></h1>
|
<h1>Astro</h1>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
Loading…
Reference in a new issue