This commit is contained in:
Phoenix 2024-02-01 18:54:28 +08:00
parent f3c6e6b196
commit ea68510c67

9
postcss.config.js Normal file
View File

@ -0,0 +1,9 @@
// postcss.config.js
import pxToViewport from 'postcss-px-to-viewport';
export default {
plugins: [
pxToViewport({
viewportWidth: 1920,
}),
]
};