diff --git a/package.json b/package.json index 26fb9cf..9d473c9 100644 --- a/package.json +++ b/package.json @@ -35,12 +35,10 @@ "css-loader": "^5.2.0", "html-webpack-plugin": "^5.3.1", "mini-css-extract-plugin": "^1.4.0", - "postcss-loader": "^5.2.0", "react-snap": "^1.23.0", "rimraf": "^3.0.2", "source-map-loader": "^2.0.1", "style-loader": "^2.0.0", - "tailwindcss": "^1.1.4", "ts-loader": "^8.1.0", "tslint": "^6.1.3", "tslint-react": "^5.0.0", diff --git a/vendors/tailwind@1.1.4/tailwind.css b/vendors/tailwind@1.1.4/tailwind.css deleted file mode 100644 index f42b270..0000000 --- a/vendors/tailwind@1.1.4/tailwind.css +++ /dev/null @@ -1,2 +0,0 @@ -@tailwind base; -@tailwind utilities; diff --git a/webpack.config.js b/webpack.config.js index 9b80448..0eb4825 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -26,10 +26,6 @@ if (process.env.NODE_ENV === "analyse") { module.exports = { mode: process.env.NODE_ENV, entry: { - 'vendor-styles': [ - './vendors/tailwind@1.1.4/tailwind.css', - ], - // The CSS for client should come after `vendor-styles` client: './client/index.tsx', }, output: { @@ -53,17 +49,6 @@ module.exports = { loader: MiniCssExtractPlugin.loader, }, 'css-loader', - { - loader: 'postcss-loader', - options: { - postcssOptions: { - ident: 'postcss', - plugins: [ - require('tailwindcss'), - ], - } - }, - }, ], }, {