-
Notifications
You must be signed in to change notification settings - Fork 12
/
.postcssrc.js
40 lines (39 loc) · 995 Bytes
/
.postcssrc.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
40
const { join } = require('path');
const createResolver = require('postcss-import-resolver');
// const tailwindcss = require('tailwindcss');
// const bemLinter = require('postcss-bem-linter');
module.exports = () => ({
sourceMap: true,
plugins: {
'postcss-import': {
resolve: createResolver({
alias: {
'~': join(__dirname),
// '~~': join(__dirname),
'@': join(__dirname, 'src'),
// '@@': join(__dirname),
},
}),
},
'postcss-url': {},
tailwindcss: "./tailwind.config.js",
'postcss-preset-env': {
stage: 3,
features: {
'color-mod-function': {
unresolved: 'warn',
},
'nesting-rules': true,
},
},
'postcss-bem-linter': {
preset: 'suit',
// implicitComponents: 'src/components/**/*.vue',
// presetOptions: { namesace: 'twt' },
ignoreSelectors: [
/^\[v-cloak\]$/,
],
},
'postcss-reporter': {},
},
});