mirror of
https://github.com/BradNut/personal-website-sveltekit
synced 2025-09-08 23:20:18 +00:00
9 lines
182 B
JavaScript
9 lines
182 B
JavaScript
|
|
const autoprefixer = require('autoprefixer');
|
||
|
|
const postcssNested = require('postcss-nested');
|
||
|
|
|
||
|
|
const config = {
|
||
|
|
plugins: [autoprefixer, postcssNested]
|
||
|
|
};
|
||
|
|
|
||
|
|
module.exports = config;
|