🚀 meta: initial commit

This commit is contained in:
Jacob Babich
2021-03-30 13:28:52 -04:00
commit 2ac0c9862d
21 changed files with 3439 additions and 0 deletions

22
postcss.config.cjs Normal file
View File

@@ -0,0 +1,22 @@
const tailwindcss = require("@tailwindcss/jit");
const autoprefixer = require("autoprefixer");
const cssnano = require("cssnano");
const mode = process.env.NODE_ENV;
const dev = mode === "development";
module.exports = {
plugins: [
// Some plugins, like postcss-nested, need to run before Tailwind
tailwindcss,
// But others, like autoprefixer, need to run after
autoprefixer,
!dev && cssnano({
preset: "default",
}),
],
};