Init
This commit is contained in:
44
postcss.config.js
Normal file
44
postcss.config.js
Normal file
@@ -0,0 +1,44 @@
|
||||
export default () => {
|
||||
const plugins = {
|
||||
'postcss-import-ext-glob': {},
|
||||
'@tailwindcss/postcss': {
|
||||
optimize: false,
|
||||
},
|
||||
'postcss-advanced-variables': {
|
||||
variables: {
|
||||
target: process.env._TW_TARGET || 'frontend',
|
||||
},
|
||||
},
|
||||
'postcss-nesting': {},
|
||||
|
||||
/**
|
||||
* This is a hopefully temporary workaround to prevent `url()` values
|
||||
* from being rebased to the document root for bundlers by
|
||||
* `@tailwindcss/postcss`. See:
|
||||
* https://github.com/tailwindlabs/tailwindcss/pull/16965
|
||||
*/
|
||||
'postcss-url': {
|
||||
url: function (asset) {
|
||||
const prefixesToStrip = [
|
||||
'./tailwind/custom/components/',
|
||||
'./tailwind/custom/',
|
||||
'./tailwind/',
|
||||
];
|
||||
|
||||
for (const prefix of prefixesToStrip) {
|
||||
if (asset.url.startsWith(prefix)) {
|
||||
return asset.url.replace(prefix, '');
|
||||
}
|
||||
}
|
||||
|
||||
return asset.url;
|
||||
},
|
||||
},
|
||||
};
|
||||
|
||||
if ('production' === process.env._TW_ENV) {
|
||||
plugins.cssnano = {};
|
||||
}
|
||||
|
||||
return { plugins };
|
||||
};
|
||||
Reference in New Issue
Block a user