Implement docs

This commit is contained in:
Mathias Wagner
2024-07-30 15:21:37 +02:00
parent 40b402a1c3
commit 73c7bc5e77
10 changed files with 8572 additions and 0 deletions

14
docs/.eslintrc.cjs Normal file
View File

@ -0,0 +1,14 @@
module.exports = {
root: true,
extends: ['@nuxt/eslint-config'],
ignorePatterns: [
'dist',
'node_modules',
'.output',
'.nuxt'
],
rules: {
'vue/max-attributes-per-line': 'off',
'vue/multi-word-component-names': 'off'
}
}