Skip to content

Commit

Permalink
update deps and add some packages
Browse files Browse the repository at this point in the history
  • Loading branch information
just-maik committed Jun 28, 2023
1 parent 90e9304 commit 34ebc23
Show file tree
Hide file tree
Showing 5 changed files with 6,879 additions and 3,245 deletions.
11 changes: 11 additions & 0 deletions .gitpod.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# This configuration file was automatically generated by Gitpod.
# Please adjust to your needs (see https://www.gitpod.io/docs/introduction/learn-gitpod/gitpod-yaml)
# and commit this file to your remote git repository to share the goodness with others.

# Learn more from ready-to-use templates: https://www.gitpod.io/docs/introduction/getting-started/quickstart

tasks:
- init: pnpm install && pnpm run build
command: pnpm run dev


10 changes: 10 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"recommendations": [
"vue.volar",
"esbenp.prettier-vscode",
"christian-kohler.path-intellisense",
"christian-kohler.npm-intellisense",
"nucllear.vscode-extension-auto-import",
"pranaygp.vscode-css-peek"
]
}
64 changes: 26 additions & 38 deletions nuxt.config.ts
Original file line number Diff line number Diff line change
@@ -1,40 +1,28 @@
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
extends: [
'nuxt-seo-kit'
],
modules: [
'@nuxtjs/tailwindcss',
'@nuxtjs/device',
'@nuxt/image',
'@vueuse/nuxt',
'nuxt-umami',
'nuxt-svgo'
],
app: {
head: {
titleTemplate: '%pageTitle %titleSeparator %siteName'
}
},
unhead: {
ogTitleTemplate: "%s | Maik's Starter",
},
runtimeConfig: {
public: {
siteUrl: process.env.NUXT_PUBLIC_SITE_URL || 'https://localhoost:3000',
siteName: 'Maiks Starter',
siteDescription: 'Welcome to maiks starter!',
language: 'en',
titleSeparator: '|'
}
},
umami: {
enable: false,
autoTrack: true,
doNotTrack: false,
cache: false,
domains: 'mywebsite.com,mywebsite2.com',
websiteId: 'your-website-id',
scriptUrl: 'https://path.to.umami.js',
}
})
extends: ["nuxt-seo-kit"],
modules: [
"@nuxtjs/tailwindcss",
"@nuxtjs/device",
"@vueuse/nuxt",
"nuxt-svgo",
],

app: {
head: {
titleTemplate: "%pageTitle %titleSeparator %siteName",
},
},
runtimeConfig: {
public: {
siteUrl:
process.env.NUXT_PUBLIC_SITE_URL || "https://localhoost:3000",
siteName: "Maiks Starter",
siteDescription: "Welcome to maiks starter!",
language: "en",
titleSeparator: "|",
},
},
telemetry: false,
devtools: true,
});
28 changes: 19 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,24 @@
"postinstall": "nuxt prepare"
},
"devDependencies": {
"@nuxt/image": "^0.7.1",
"@nuxt/devtools": "^0.6.4",
"@nuxtjs/device": "^3.1.0",
"@nuxtjs/tailwindcss": "^6.3.1",
"@vite-pwa/nuxt": "^0.0.5",
"@vueuse/nuxt": "^9.12.0",
"nuxt": "^3.1.2",
"nuxt-seo-kit": "^1.2.2",
"nuxt-svgo": "^1.1.0",
"nuxt-umami": "^1.2.1"
"@nuxtjs/tailwindcss": "^6.8.0",
"@types/markdown-it": "^12.2.3",
"@vite-pwa/nuxt": "^0.1.0",
"@vueuse/nuxt": "^9.13.0",
"animate.css": "^4.1.1",
"atropos": "^2.0.1",
"consola": "^3.2.1",
"markdown-it": "^13.0.1",
"nuxt": "^3.6.1",
"nuxt-graphql-client": "^0.2.27",
"nuxt-icon": "^0.4.1",
"nuxt-seo-kit": "^1.3.9",
"nuxt-svgo": "^1.2.1",
"nuxt-swiper": "^1.1.1",
"nuxt-umami": "^1.2.3",
"postcss": "^8.4.24",
"sass": "^1.63.6"
}
}
}
Loading

0 comments on commit 34ebc23

Please sign in to comment.