Skip to content

Commit

Permalink
watch src files for tailwind classes instead of built files
Browse files Browse the repository at this point in the history
  • Loading branch information
ooloth committed Jun 10, 2023
1 parent 8ab2736 commit 6a87567
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 3 additions & 1 deletion src/_includes/layouts/root.webc
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
<!DOCTYPE html>

<html :lang="$data.site.language">
<meta>
<head>
<!--- Base --->
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />

Expand Down
3 changes: 2 additions & 1 deletion src/styles/tailwind.config.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['_site/**/*'],
content: ['src/**/*.webc'],
// content: ['_site/**/*'],
theme: {
extend: {},
},
Expand Down

0 comments on commit 6a87567

Please sign in to comment.