aboutsummaryrefslogtreecommitdiff
path: root/vnext/postcss.config.js
diff options
context:
space:
mode:
authorGravatar Vitaly Takmazov2023-03-05 16:32:12 +0300
committerGravatar Vitaly Takmazov2023-03-05 16:32:12 +0300
commit79d769f3d29d1827d7744db3a26f02bc0d95d792 (patch)
tree645eef66702817b3b92cd3ce555ecb7c44717e59 /vnext/postcss.config.js
parent88efdf2cde176a1f42be5183d42c34b7ad91b266 (diff)
Merge vnext build configuration
Diffstat (limited to 'vnext/postcss.config.js')
-rw-r--r--vnext/postcss.config.js16
1 files changed, 0 insertions, 16 deletions
diff --git a/vnext/postcss.config.js b/vnext/postcss.config.js
deleted file mode 100644
index d5ff5a25..00000000
--- a/vnext/postcss.config.js
+++ /dev/null
@@ -1,16 +0,0 @@
-module.exports = (ctx) => {
- const production = ctx.env === 'production';
- const config = {
- map: production ? false : ctx.options.map,
- plugins: {
- 'autoprefixer': { grid: true },
- 'stylelint': production ? false : {},
- 'postcss-import': {},
- 'postcss-preset-env': { stage: 0 },
- 'cssnano': production ? { preset: 'default' } : false,
- 'postcss-url' : { url: 'copy', assetsPath: '', useHash: true }
- },
- };
- return config;
-};
-