void: Finish porting the main source
diff --git a/apps/void/postcss.config.cjs b/apps/void/postcss.config.cjs
new file mode 100644
index 0000000..04e27fe
--- /dev/null
+++ b/apps/void/postcss.config.cjs
@@ -0,0 +1,13 @@
+const tailwindcss = require('tailwindcss');
+const autoprefixer = require('autoprefixer');
+
+const config = {
+ plugins: [
+ //Some plugins, like tailwindcss/nesting, need to run before Tailwind,
+ tailwindcss(), //But others, like autoprefixer, need to run after,
+ autoprefixer,
+ autoprefixer
+ ]
+};
+
+module.exports = config;