Update package.json to set module type, refactor postcss.config.js to use ES module syntax, and remove vite.config.ts file.

This commit is contained in:
乘风
2025-12-10 15:57:02 +08:00
parent 81859dfacb
commit af2f32da4a
3 changed files with 8 additions and 7 deletions

View File

@@ -3,6 +3,7 @@
"version": "3.0.0",
"license": "MIT",
"private": true,
"type": "module",
"dependencies": {
"@ant-design/icons": "^5.6.1",
"@sentry/react": "^10.29.0",

View File

@@ -1,8 +1,8 @@
module.exports = {
plugins: {
'postcss-pxtorem': {
rootValue: 16,
propList: ['*'],
},
export default {
plugins: {
"postcss-pxtorem": {
rootValue: 16,
propList: ["*"],
},
};
},
};