recreate web - now using tailwind instead of unocss - created theme/design system - created first components - add first sections/content
12 lines
358 B
JavaScript
12 lines
358 B
JavaScript
const postcssImport = require("postcss-import");
|
|
const nesting = require("tailwindcss/nesting");
|
|
const tailwind = require("tailwindcss");
|
|
const autoprefixer = require("autoprefixer");
|
|
const customMedia = require("postcss-custom-media");
|
|
|
|
const config = {
|
|
plugins: [postcssImport, nesting, tailwind, autoprefixer, customMedia],
|
|
};
|
|
|
|
module.exports = config;
|