mirror of
https://github.com/Stirling-Tools/Stirling-PDF.git
synced 2026-09-02 21:03:34 +03:00
# Description of Changes Modernises the codebase and gets rid of warnings where Node complains that it doesn't know what type of JS it's supposed to be reading on `.js` files. We might as well update everything to just use correct JS syntax instead of keeping with some files having Node-specific imports.
7 lines
164 B
JavaScript
7 lines
164 B
JavaScript
import tailwindcssPostcss from "@tailwindcss/postcss";
|
|
import autoprefixer from "autoprefixer";
|
|
|
|
export default {
|
|
plugins: [tailwindcssPostcss, autoprefixer],
|
|
};
|