Skip to content

Commit

Permalink
fix config path
Browse files Browse the repository at this point in the history
  • Loading branch information
fsubal committed Oct 15, 2023
1 parent 9d451ca commit f18bf70
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/第3章_Tailwind_CSSを導入する/postcss.config.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
const path = require("path");

module.exports = {
plugins: {
tailwindcss: { config: require("./tailwind.config.js") },
tailwindcss: { config: path.join(__dirname, "./tailwind.config.js") },
},
};

0 comments on commit f18bf70

Please sign in to comment.