Skip to content

Commit

Permalink
Changed scripts to work from the public folder
Browse files Browse the repository at this point in the history
  • Loading branch information
JustinByrne committed Jun 5, 2022
1 parent eb40a06 commit 8f56f5f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 6 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"scripts": {
"watch": "concurrently \"npm:watch-tailwind\" \"npm:watch-browser\"",
"watch-browser": "browser-sync -w --files \"./tailwind.css\"",
"watch-tailwind": "npx tailwindcss -i ./src/tailwind.css -o ./tailwind.css --watch",
"build": "NODE_ENV=production npx tailwindcss -i ./src/tailwind.css -o ./tailwind.css --minify"
"watch-tailwind": "npx tailwindcss -i ./tailwind.css -o ./public/css/tailwind.css --watch",
"build": "NODE_ENV=production npx tailwindcss -i ./tailwind.css -o ./public/csstailwind.css --minify"
}
}
6 changes: 2 additions & 4 deletions tailwind.config.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
module.exports = {
content: [
'index.html'
],
content: ["./public/**.html"],
theme: {
extend: {},
},
plugins: [],
}
};
File renamed without changes.

0 comments on commit 8f56f5f

Please sign in to comment.