Skip to content

Commit ec738a9

Browse files
committed
Refactor stylesheet structure: move components to _components and update paths, add postcss-import to manage imports more efficiently.
1 parent 82e1642 commit ec738a9

File tree

11 files changed

+15
-9
lines changed

11 files changed

+15
-9
lines changed

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
"autoprefixer": "^10.4.23",
88
"postcss": "^8.5.6",
99
"postcss-cli": "^11.0.1",
10+
"postcss-import": "^16.1.1",
1011
"tailwindcss": "^3.4.14"
1112
}
1213
}

postcss.config.js

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
1+
const path = require('node:path');
2+
13
module.exports = {
24
plugins: {
5+
"postcss-import": {
6+
path: path.join(__dirname, 'stylesheets')
7+
},
38
tailwindcss: {},
49
autoprefixer: {},
510
}
6-
}
11+
};
File renamed without changes.

0 commit comments

Comments
 (0)