From 6478c40414347be15771a9e665a9197927fd9bfc Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Mon, 23 Jul 2018 12:22:57 +0100 Subject: [PATCH] Disable PurgeCSS for now --- netlify.toml | 2 +- webpack.mix.js | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/netlify.toml b/netlify.toml index e2bd04a..6fc7033 100644 --- a/netlify.toml +++ b/netlify.toml @@ -1,3 +1,3 @@ [build] - command = "yarn dev && vendor/bin/sculpin generate -e prod && yarn prod && cp -R source/build output_prod" + command = "yarn prod && vendor/bin/sculpin generate -e prod" publish = "output_prod" diff --git a/webpack.mix.js b/webpack.mix.js index 0020506..0133b16 100644 --- a/webpack.mix.js +++ b/webpack.mix.js @@ -10,11 +10,11 @@ mix.disableNotifications() .options({ processCssUrls: false, }) - .purgeCss({ - globs: [ - path.join(__dirname, 'output_prod/**/*.html'), - ], - }) + // .purgeCss({ + // globs: [ + // path.join(__dirname, 'output_prod/**/*.html'), + // ], + // }) .options({ processCssUrls: false });