Skip to content

Commit

Permalink
remove static site generation features
Browse files Browse the repository at this point in the history
  • Loading branch information
Maurier committed May 2, 2024
1 parent ead7223 commit 720d646
Show file tree
Hide file tree
Showing 13 changed files with 1,191 additions and 227 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# To get started with Dependabot version updates, you'll need to specify which
# package ecosystems to update and where the package manifests are located.
# Please see the documentation for all configuration options:
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates

version: 2
updates:
- package-ecosystem: "npm" # See documentation for possible values
directory: "/" # Location of package manifests
schedule:
interval: "weekly"
1 change: 1 addition & 0 deletions frontend/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
node_modules
/dist
tsconfig.tsbuildinfo
/.vite-ssg-temp

# local env files
.env.local
Expand Down
848 changes: 848 additions & 0 deletions frontend/auto-imports.d.ts

Large diffs are not rendered by default.

28 changes: 28 additions & 0 deletions frontend/components.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
/* eslint-disable */
/* prettier-ignore */
// @ts-nocheck
// Generated by unplugin-vue-components
// Read more: https://github.com/vuejs/core/pull/3399
export {}

declare module 'vue' {
export interface GlobalComponents {
AuthRedirect: typeof import('./src/components/account/auth-redirect.vue')['default']
'Cd.about': typeof import('./src/components/about/cd.about.vue')['default']
'Cd.contact': typeof import('./src/components/contact/cd.contact.vue')['default']
'Cd.contribute': typeof import('./src/components/contribute/cd.contribute.vue')['default']
'Cd.dataset': typeof import('./src/components/dataset/cd.dataset.vue')['default']
'Cd.featuredDatasets': typeof import('./src/components/home/cd.featured-datasets.vue')['default']
'Cd.footer': typeof import('./src/components/base/cd.footer.vue')['default']
'Cd.home': typeof import('./src/components/home/cd.home.vue')['default']
'Cd.homeSearch': typeof import('./src/components/home/cd.home-search.vue')['default']
'Cd.login': typeof import('./src/components/account/cd.login.vue')['default']
'Cd.registerDataset': typeof import('./src/components/register/cd.register-dataset.vue')['default']
'Cd.search': typeof import('./src/components/search/cd.search.vue')['default']
'Cd.searchResults': typeof import('./src/components/search-results/cd.search-results.vue')['default']
'Cd.spatialCoverageMap': typeof import('./src/components/search-results/cd.spatial-coverage-map.vue')['default']
'Cd.submissions': typeof import('./src/components/submissions/cd.submissions.vue')['default']
RouterLink: typeof import('vue-router')['RouterLink']
RouterView: typeof import('vue-router')['RouterView']
}
}
Loading

0 comments on commit 720d646

Please sign in to comment.