Skip to content
This repository was archived by the owner on Jan 20, 2022. It is now read-only.

Commit e2d7c55

Browse files
committed
Use no sourceMaps, try to add extra stuff to postcss.config.js
1 parent 01ad28e commit e2d7c55

File tree

1 file changed

+25
-4
lines changed

1 file changed

+25
-4
lines changed

postcss.config.js

+25-4
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,36 @@
11
module.exports = context => ({
2-
sourceMap: false,
2+
map: {
3+
sourcesContent: false,
4+
inline: false
5+
},
36
plugins: {
47
'postcss-import': {
58
path: [
69
'node_modules',
710
'src/main/react', // allows importing modules using absolute path, @see https://goo.gl/luH0Xa
8-
]
11+
],
12+
map: {
13+
sourcesContent: false,
14+
inline: false
15+
},
16+
},
17+
'postcss-mixins': {
18+
map: {
19+
sourcesContent: false,
20+
inline: false
21+
},
22+
},
23+
'postcss-each': {
24+
map: {
25+
sourcesContent: false,
26+
inline: false
27+
},
928
},
10-
'postcss-mixins': {},
11-
'postcss-each': {},
1229
'postcss-cssnext': {
30+
map: {
31+
sourcesContent: false,
32+
inline: false
33+
},
1334
features: {
1435
customProperties: {
1536
variables: {

0 commit comments

Comments
 (0)