From bb724f581b0fe03ae9abf3ebd895be1db266cb12 Mon Sep 17 00:00:00 2001 From: Sebin Nyshkim Date: Mon, 3 Apr 2023 00:29:07 +0200 Subject: [PATCH] build: inline postcss config into vite config --- postcss.config.js | 5 ----- vite.config.ts | 3 +++ 2 files changed, 3 insertions(+), 5 deletions(-) delete mode 100644 postcss.config.js diff --git a/postcss.config.js b/postcss.config.js deleted file mode 100644 index 961986e..0000000 --- a/postcss.config.js +++ /dev/null @@ -1,5 +0,0 @@ -module.exports = { - plugins: { - autoprefixer: {} - } -} diff --git a/vite.config.ts b/vite.config.ts index 439f149..091363a 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -15,5 +15,8 @@ export default defineConfig({ }, css: { devSourcemap: true, + postcss: { + plugins: [require('autoprefixer')] + } }, });