-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: better project structure (#1)
- Loading branch information
Showing
30 changed files
with
28 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
module.exports = { | ||
plugins: [ | ||
require("tailwindcss")("./assets/css/tailwind.config.js"), // Update path to the root directory | ||
require("autoprefixer")({ | ||
path: ["./"], | ||
}), | ||
], | ||
}; |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
module.exports = { | ||
darkMode: "class", | ||
content: [ | ||
"./layouts/**/*.html", | ||
"./content/**/*.html", | ||
"./themes/**/layouts/**/*.html", // Themes layouts directory | ||
"./themes/**/content/**/*.html", // Themes content directory, if applicable | ||
"./assets/**/*.js", // Include any JavaScript files where Tailwind classes might be used | ||
"./static/**/*.html", // Include static HTML if you have them | ||
], | ||
theme: { | ||
extend: {}, | ||
}, | ||
plugins: [ | ||
require("@tailwindcss/aspect-ratio"), | ||
require("@tailwindcss/forms"), | ||
require("@tailwindcss/typography"), | ||
], | ||
}; |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
baseURL = 'https://example.org/' | ||
languageCode = 'en-us' | ||
title = 'Hugo TailwindCSS Starter' | ||
theme = 'starter-theme' | ||
title = 'Hugo TailwindCSS Starter' |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Empty file.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.