From 8f3ad0f8e43ade3670ee3f815726f0baba2082e0 Mon Sep 17 00:00:00 2001 From: Adam Wathan Date: Tue, 24 Oct 2017 07:33:24 -0400 Subject: [PATCH] Add default config to module.exports --- src/index.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/index.js b/src/index.js index 368080a46..6fe613367 100644 --- a/src/index.js +++ b/src/index.js @@ -37,4 +37,6 @@ const plugin = postcss.plugin('tailwind', (options = {}) => { ]) }) +plugin.defaultConfig = _.cloneDeep(defaultConfig) + module.exports = plugin