From edb74669ca5427438809b82a9c8835f717e5896c Mon Sep 17 00:00:00 2001 From: Theo Sanderson Date: Fri, 24 Nov 2023 15:09:05 +0000 Subject: [PATCH] Delete taxonium_component/craco.config.js (#559) --- taxonium_component/craco.config.js | 39 ------------------------------ 1 file changed, 39 deletions(-) delete mode 100644 taxonium_component/craco.config.js diff --git a/taxonium_component/craco.config.js b/taxonium_component/craco.config.js deleted file mode 100644 index 37b9b4c5..00000000 --- a/taxonium_component/craco.config.js +++ /dev/null @@ -1,39 +0,0 @@ -const NodePolyfillPlugin = require("node-polyfill-webpack-plugin"); - -module.exports = { - style: { - postcssOptions: { - plugins: [require("tailwindcss"), require("autoprefixer")], - }, - }, - webpack: { - plugins: { - add: [ - new NodePolyfillPlugin({ - excludeAliases: ["console"], - }), - ], - }, - - configure: { - module: { - rules: [ - { - type: "javascript/auto", - test: /\.mjs$/, - use: [], - }, - ], - }, - }, - }, - devServer: { - headers: { - "Access-Control-Allow-Origin": "https://platform.epicov.org", - "Access-Control-Allow-Methods": "GET, POST, PUT, DELETE, PATCH, OPTIONS", - "Access-Control-Allow-Headers": - "X-Requested-With, content-type, Authorization", - "Access-Control-Allow-Credentials": "true", - }, - }, -};