Skip to content
This repository was archived by the owner on May 8, 2021. It is now read-only.

Commit 0ca9083

Browse files
committed
Update sapper example to use correct config file name
1 parent 55021d3 commit 0ca9083

2 files changed

Lines changed: 1 addition & 3 deletions

File tree

examples/sapper/postcss.config.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
const tailwindcss = require("tailwindcss");
2-
31
// only needed if you want to purge
42
const purgecss = require("@fullhuman/postcss-purgecss")({
53
content: ["./src/**/*.svelte", "./src/**/*.html"],
@@ -8,7 +6,7 @@ const purgecss = require("@fullhuman/postcss-purgecss")({
86

97
module.exports = {
108
plugins: [
11-
tailwindcss("./tailwind.js"),
9+
require("tailwindcss"),
1210

1311
// only needed if you want to purge
1412
...(process.env.NODE_ENV === "production" ? [purgecss] : [])

0 commit comments

Comments
 (0)