Skip to content

Commit

Permalink
feat: Improve docker workflow and image
Browse files Browse the repository at this point in the history
  • Loading branch information
HugoRCD committed Dec 11, 2024
1 parent 3c957b7 commit 4812d05
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 14 deletions.
1 change: 0 additions & 1 deletion app/components/toc/Index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@ nuxtApp.hooks.hookOnce('page:finish', () => {
])
})
onClickOutside(target, event => {
if (isOpen.value) isOpen.value = false
})
Expand Down
Binary file modified bun.lockb
Binary file not shown.
4 changes: 2 additions & 2 deletions docker-compose.local.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
services:
hr_folio:
build:
context: ./
dockerfile: ./Dockerfile
context: .
dockerfile: Dockerfile
container_name: hr_folio
restart: always
environment:
Expand Down
1 change: 0 additions & 1 deletion nuxt.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,6 @@ export default defineNuxtConfig({
},

nitro: {
preset: process.env.NITRO_PRESET || 'bun',
prerender: {
crawlLinks: true,
routes: ['/', '/works', '/about', '/writing', '/sitemap.xml'],
Expand Down
23 changes: 13 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,20 +13,23 @@
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"devDependencies": {
"@hrcd/eslint-config": "edge",
"@nuxt/content": "2.13.4",
"dependencies": {
"mockline": "0.6.0",
"nuxt": "3.14.1592",
"resend": "4.0.1",
"vue": "3.5.13",
"vue-router": "4.5.0",
"@nuxt/image": "1.8.1",
"@nuxt/scripts": "0.9.5",
"@nuxthq/studio": "2.2.1",
"@nuxtjs/seo": "2.0.2",
"@vueuse/nuxt": "12.0.0",
"@vueuse/nuxt": "12.0.0"
},
"devDependencies": {
"@hrcd/eslint-config": "edge",
"@nuxt/content": "2.13.4",
"@shelve/cli": "2.9.0",
"automd": "0.3.12",
"eslint": "9.16.0",
"mockline": "0.6.0",
"nuxt": "3.14.1592",
"resend": "4.0.1",
"vue": "3.5.13",
"vue-router": "4.5.0"
"eslint": "9.16.0"
}
}

0 comments on commit 4812d05

Please sign in to comment.