Skip to content

Commit

Permalink
set styling
Browse files Browse the repository at this point in the history
  • Loading branch information
elproffesore committed Jun 19, 2024
1 parent 3e64cfa commit 9c99f46
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 14 deletions.
File renamed without changes.
18 changes: 4 additions & 14 deletions nuxt.config.ts
Original file line number Diff line number Diff line change
@@ -1,24 +1,14 @@
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
devtools: { enabled: true },

// runtime config with env variables and exposed via useRuntimeConfig()
runtimeConfig:{},

modules: ["@nuxtjs/tailwindcss"],
modules: [
"@nuxtjs/tailwindcss"
],
router: {
options: {
scrollBehaviorType: 'smooth'
}
},
css: [
'~/assets/css/tailwind.css',
],
nitro: {
prerender: {
routes: [
"/"
]
}
}
css: ["~/assets/css/tailwind.css"]
})
File renamed without changes
19 changes: 19 additions & 0 deletions tailwind.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
// tailwind.config.js
module.exports = {
mode: "jit",
purge: [
"./components/**/*.{vue,js}",
"./layouts/**/*.vue",
"./pages/**/*.vue",
"./plugins/**/*.{js,ts}",
"./nuxt.config.{js,ts}",
],
darkMode: false, // or 'media' or 'class'
theme: {
extend: {},
},
variants: {
extend: {},
},
plugins: [],
};

0 comments on commit 9c99f46

Please sign in to comment.