UNPKG

defuss-ssg

Version:

A simple static site generator (SSG) built with defuss.

15 lines (11 loc) 306 B
'use strict'; var node_path = require('node:path'); const tailwindPlugin = { name: "tailwind", mode: "both", phase: "post", fn: async (projectDir, { tmp }) => { console.log("Tailwind CSS plugin running... 1 DIR:", node_path.join(projectDir)); } }; exports.tailwindPlugin = tailwindPlugin;