1
0
mirror of https://github.com/locomotivemtl/locomotive-boilerplate.git synced 2026-01-15 00:55:08 +08:00

Update postcss.js

Remove extraneous `null` assignment on optional exports.
This commit is contained in:
Chauncey McAskill
2021-11-03 16:50:08 -04:00
parent eadc414329
commit a95fe4523c

View File

@@ -12,8 +12,7 @@ try {
autoprefixer = await import('autoprefixer');
autoprefixer = autoprefixer.default;
} catch (err) {
postcss = null;
autoprefixer = null;
// do nothing
}
export default postcss;