Bootstrapped project structure

astro
Jef Roosens 2021-12-17 21:57:27 +01:00
parent 3728e2b24f
commit 9af76b09f2
Signed by: Jef Roosens
GPG Key ID: 955C0660072F691F
6 changed files with 3799 additions and 0 deletions

15
.gitignore vendored 100644
View File

@ -0,0 +1,15 @@
# build output
dist
# dependencies
node_modules/
.snowpack/
# logs
npm-debug.log*
yarn-debug.log*
yarn-error.log*
# environment variables
.env
.env.production

13
astro.config.mjs 100644
View File

@ -0,0 +1,13 @@
// Full Astro Configuration API Documentation:
// 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
export default /** @type {import('astro').AstroUserConfig} */ ({
// Enable the Vue renderer to support Vue components.
renderers: ['@astrojs/renderer-vue'],
});

19
package.json 100644
View File

@ -0,0 +1,19 @@
{
"name": "rb-web",
"version": "0.2.0",
"description": "Frontend for the Rusty Bever blogging software.",
"main": "index.js",
"repository": "https://git.rustybever.be/rusty-bever/web",
"author": "Jef Roosens",
"license": "MIT",
"private": true,
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview"
},
"devDependencies": {
"astro": "0.21.13"
}
}

View File

@ -0,0 +1,8 @@
<html lang="en">
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<body>
<h1>Hi!</h1>
</body>
</html>

3
tsconfig.json 100644
View File

@ -0,0 +1,3 @@
{
"moduleResolution": "node"
}

3741
yarn.lock 100644

File diff suppressed because it is too large Load Diff