mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-06 04:19:31 +00:00
Initial cleanup commit
This commit is contained in:
@@ -1,6 +0,0 @@
|
||||
module.exports = {
|
||||
plugins: {
|
||||
tailwindcss: {},
|
||||
autoprefixer: {},
|
||||
},
|
||||
};
|
||||
@@ -6,12 +6,6 @@
|
||||
|
||||
/* You can override the default Infima variables here. */
|
||||
|
||||
/* Tailwind directives */
|
||||
/* Commented out to stop the CSS Reset on the standard documentation pages */
|
||||
/* @tailwind base; */
|
||||
@tailwind components;
|
||||
@tailwind utilities;
|
||||
|
||||
.ReactModal__Overlay {
|
||||
z-index: 9999;
|
||||
}
|
||||
|
||||
@@ -1,14 +0,0 @@
|
||||
const proxy = require('http-proxy-middleware');
|
||||
const morgan = require('morgan');
|
||||
|
||||
module.exports = (app) => {
|
||||
app.use(
|
||||
'/socket',
|
||||
proxy({
|
||||
target: 'https://developer-community-backend.herokuapp.com',
|
||||
changeOrigin: true,
|
||||
}),
|
||||
);
|
||||
app.use(morgan('combined'));
|
||||
console.log(app);
|
||||
};
|
||||
@@ -1,17 +0,0 @@
|
||||
// tailwind.config.js
|
||||
/** @type {import('tailwindcss').Config} */
|
||||
module.exports = {
|
||||
corePlugins: {
|
||||
preflight: true,
|
||||
},
|
||||
content: [
|
||||
'./src/pages/**/*.js',
|
||||
'./src/components/stream/**/*.js',
|
||||
'./src/components/agenda/**/*.js',
|
||||
'./src/components/Accordion/**/*.js',
|
||||
],
|
||||
theme: {
|
||||
extend: {},
|
||||
},
|
||||
plugins: [],
|
||||
};
|
||||
Reference in New Issue
Block a user