Skip to content

Commit

Permalink
Updated boiler, added google fonts downloader
Browse files Browse the repository at this point in the history
  • Loading branch information
Rene-Roscher committed Nov 25, 2023
1 parent 8583dbe commit 4c21fa6
Show file tree
Hide file tree
Showing 6 changed files with 5,711 additions and 13,917 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,5 @@ node_modules
.output
.env
dist
.npmrc
.npmrc
.idea/
13 changes: 13 additions & 0 deletions nuxt.config.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,16 @@
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
// @ts-ignore
devtools: { enabled: false }, // https://github.com/nuxt/devtools
css: ['~/assets/css/main.css'],
modules: [
['@nuxtjs/google-fonts', {
// https://google-fonts.nuxtjs.org/getting-started/setup
families: {
Montserrat: [400, 500, 600, 700, 800, 900],
}
}]
],
postcss: {
plugins: {
tailwindcss: {},
Expand All @@ -11,4 +21,7 @@ export default defineNuxtConfig({
build: {
transpile: ['@heroicons/vue']
},
googleFonts: {
download: true
},
})
Loading

0 comments on commit 4c21fa6

Please sign in to comment.