-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpostcss.config.js
39 lines (39 loc) · 952 Bytes
/
postcss.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
module.exports = {
// plugins: {
// rtlcss: {
// autoRename: true,
// stringMap:
// [
// {
// name: 'left-right',
// priority: 100,
// search: ['left', 'Left', 'LEFT'],
// replace: ['right', 'Right', 'RIGHT'],
// options: {
// scope: '*',
// ignoreCase: false
// }
// },
// {
// name: 'ltr-rtl',
// priority: 100,
// search: ['ltr', 'Ltr', 'LTR'],
// replace: ['rtl', 'Rtl', 'RTL'],
// options: {
// scope: '*',
// ignoreCase: false
// }
// },
// {
// name: 'prev-next',
// search: ['prev', 'Prev', 'PREV'],
// replace: ['next', 'Next', 'NEXT'],
// options: {
// ignoreCase: false
// }
// }
// ]
// }
// }
plugins: ['postcss-rtlcss']
}