Skip to content

Commit

Permalink
fix(css): was that the secret all along or was it the friends along t…
Browse files Browse the repository at this point in the history
…he way?
  • Loading branch information
hutchic committed Aug 31, 2024
1 parent 5786e3b commit 32222a5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 0 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,9 @@ logs:
# Clean up the environment
clean:
docker compose down -v --rmi all --remove-orphans
rm -rf node_modules
rm -rf .nuxt
rm -rf app/dist

# Generate the static site
package: clean dev
docker compose exec --user=root nuxt chown -R node:node /src
UID=$$(id -u) GID=$$(id -g) docker compose exec nuxt /bin/bash -c "npx nuxt generate --preset github_pages"
cd app/.output/public && ln -s . boat-share || true
$(MAKE) stop
6 changes: 5 additions & 1 deletion app/tailwind.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,11 @@ export default <Partial<Config>> {
'./plugins/**/*.{js,ts}',
'./nuxt.config.{js,ts}',
'./app.vue',
'./node_modules/@nuxt/ui/dist/**/*.css',
'./src/node_modules/@nuxt/ui/dist/**/*.css', // Include Nuxt UI styles
'./src/node_modules/tailwindcss/**/*.css', // Include Tailwind CSS files from node_modules
'./src/node_modules/@tailwindcss/**/*.css', // Include any Tailwind CSS plugins
'./src/node_modules/headlessui/**/*.js', // Include Headless UI if used
'./src/node_modules/@headlessui/**/*.js', // Include Headless UI for Tailwind CSS plugins
],
theme: {
extend: {
Expand Down

0 comments on commit 32222a5

Please sign in to comment.