Change bootstrap to source version
This commit is contained in:
17
bootstrap/build/postcss.config.mjs
Normal file
17
bootstrap/build/postcss.config.mjs
Normal file
@ -0,0 +1,17 @@
|
||||
const mapConfig = {
|
||||
inline: false,
|
||||
annotation: true,
|
||||
sourcesContent: true
|
||||
}
|
||||
|
||||
export default context => {
|
||||
return {
|
||||
map: context.file.dirname.includes('examples') ? false : mapConfig,
|
||||
plugins: {
|
||||
autoprefixer: {
|
||||
cascade: false
|
||||
},
|
||||
rtlcss: context.env === 'RTL'
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user