Skip to content

Commit

Permalink
Merge pull request #3 from SERVIR/navigations
Browse files Browse the repository at this point in the history
Navigational Elements (header, logoheader and footer)
  • Loading branch information
billyz313 authored Oct 18, 2024
2 parents 00e9ad6 + 2d42197 commit b936e79
Show file tree
Hide file tree
Showing 34 changed files with 11,014 additions and 11,687 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ npm install
* [Vue](https://vuejs.org/)
* [Nuxt3](https://nuxt.com/)
* [Vuetify](https://vuetifyjs.com/)
* [OpenLayers](https://vue3openlayers.netlify.app/)
* [Leaflet](https://leaflet.nuxtjs.org/)


## Contact
Expand Down
43 changes: 0 additions & 43 deletions docs/.vitepress/config.ts

This file was deleted.

1 change: 0 additions & 1 deletion docs/components/s-header.md

This file was deleted.

1 change: 0 additions & 1 deletion docs/example.md

This file was deleted.

10 changes: 0 additions & 10 deletions docs/index.md

This file was deleted.

1 change: 0 additions & 1 deletion docs/installation.md

This file was deleted.

18 changes: 14 additions & 4 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
import withNuxt from './playground/.nuxt/eslint.config.mjs'
import withNuxt from './playground/.nuxt/eslint.config.mjs';
import eslintPluginPrettierRecommended from 'eslint-plugin-prettier/recommended';

import eslintPluginPrettierRecommended from 'eslint-plugin-prettier/recommended'

export default withNuxt(eslintPluginPrettierRecommended)
export default withNuxt({
...eslintPluginPrettierRecommended,
ignores: ['node_modules', '.nuxt', 'dist', 'test', 'playground/*'],
rules: {
'vue/multi-word-component-names': 'off',
},
languageOptions: {
globals: {
defineNuxtConfig: 'readonly',
},
},
});
Loading

0 comments on commit b936e79

Please sign in to comment.