Skip to content

Commit

Permalink
feat: Pexels app facelift
Browse files Browse the repository at this point in the history
  • Loading branch information
LiamMartens committed Jul 7, 2021
1 parent 8e5cbbb commit cd33ece
Show file tree
Hide file tree
Showing 59 changed files with 1,167 additions and 1,558 deletions.
11 changes: 11 additions & 0 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"image": "node:14",
"containerUser": "node",
"extensions": [
"editorconfig.editorconfig",
"me-dutour-mathieu.vscode-github-actions"
],
"mounts": [
"source=${localEnv:HOME}${localEnv:USERPROFILE}/.npmrc,target=/home/node/.npmrc,type=bind,consistency=cached"
]
}
3 changes: 3 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[*]
indent_size = 2
indent_style = space
3 changes: 0 additions & 3 deletions .vscode/settings.json

This file was deleted.

7 changes: 6 additions & 1 deletion custom.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@ declare module '*.svg' {
}

declare module '*.css' {
const content: any;
const content: string;
export default content;
}

declare module '*.scss' {
const content: Record<string, string>;
export default content;
}

Expand Down
Loading

0 comments on commit cd33ece

Please sign in to comment.