Skip to content

Commit

Permalink
Add support for images
Browse files Browse the repository at this point in the history
  • Loading branch information
Princesseuh committed Dec 8, 2021
1 parent 85c9761 commit e212952
Show file tree
Hide file tree
Showing 47 changed files with 540 additions and 182 deletions.
6 changes: 3 additions & 3 deletions .gitignore
Expand Up @@ -3,7 +3,6 @@ dist

# dependencies
node_modules/
.snowpack/

# logs
npm-debug.log*
Expand All @@ -18,7 +17,8 @@ yarn-error.log*
.DS_Store
workspace.code-workspace

# Social images (we'll cache those on Netlify)
public/socials/*
# Generated images (we'll cache those on Netlify)
public/assets/socials/*
public/assets/images/*

src/pages/test.astro
8 changes: 8 additions & 0 deletions .vscode/extensions.json
@@ -0,0 +1,8 @@
{
"recommendations": [
"astro-build.astro-vscode",
"dbaeumer.vscode-eslint",
"davidanson.vscode-markdownlint",
"esbenp.prettier-vscode"
]
}
15 changes: 8 additions & 7 deletions package.json
@@ -1,6 +1,6 @@
{
"name": "@example/minimal",
"version": "0.0.1",
"name": "princesseuh.dev",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "astro dev",
Expand All @@ -10,18 +10,19 @@
"lint": "eslint . --ext .ts,.js"
},
"devDependencies": {
"astro": "0.21.10",
"@11ty/eleventy-img": "^1.0.0",
"astro": "0.21.4",
"typescript": "^4.5.2"
},
"dependencies": {
"@types/eslint": "^8.2.1",
"@types/prettier": "^2.4.2",
"@typescript-eslint/eslint-plugin": "^5.5.0",
"@typescript-eslint/parser": "^5.5.0",
"astro-icon": "^0.2.1",
"@typescript-eslint/eslint-plugin": "^5.6.0",
"@typescript-eslint/parser": "^5.6.0",
"astro-icon": "0.2.2",
"astro-social-images": "^0.2.1",
"autoprefixer": "^10.4.0",
"eslint": "^8.4.0",
"eslint": "^8.4.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.5.1",
Expand Down

0 comments on commit e212952

Please sign in to comment.