Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
module.exports = {
env: {
es2021: true,
node: true
node: true,
},
plugins: ['gridsome'],
extends: [
'eslint:recommended',
'plugin:vue/essential',
'plugin:gridsome/recommended',
],
parserOptions: {
ecmaVersion: 2021,
Expand All @@ -16,5 +14,6 @@ module.exports = {
rules: {
'object-curly-spacing': ['error', 'always'],
'comma-dangle': ['error', 'always-multiline'],
}
'vue/multi-word-component-names': 'off',
},
};
3 changes: 2 additions & 1 deletion .github/workflows/deploy-now.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ jobs:
node-version: v14.x

- name: Build Node assets
if: ${{ steps.project.outputs.deployment-enabled == 'true' }}
env:
CI: true
SHOW_BLOG: true
Expand All @@ -56,4 +57,4 @@ jobs:
service-host: api-eu.ionos.space
api-key: ${{ secrets.IONOS_API_KEY }}
dist-folder: dist
runtime-placeholder-files: ${{ steps.template.outputs.runtime-placeholder-files }}
runtime-placeholder-files: ${{ steps.template.outputs.runtime-placeholder-files }}
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@ npm ci
cp .env.example .env
```

:warning: If .env is missing errors like `Error: Cannot query field "teaser" on type "MarkdownPage".` appear.


### Develop

Run local server.
Expand Down
Loading