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:
@@ -3,6 +3,7 @@
|
|||||||
"version": "3.0.0",
|
"version": "3.0.0",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"private": true,
|
"private": true,
|
||||||
|
"type": "module",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@ant-design/icons": "^5.6.1",
|
"@ant-design/icons": "^5.6.1",
|
||||||
"@sentry/react": "^10.29.0",
|
"@sentry/react": "^10.29.0",
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
module.exports = {
|
export default {
|
||||||
plugins: {
|
plugins: {
|
||||||
'postcss-pxtorem': {
|
"postcss-pxtorem": {
|
||||||
rootValue: 16,
|
rootValue: 16,
|
||||||
propList: ['*'],
|
propList: ["*"],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
Reference in New Issue
Block a user