mirror of
https://github.com/gchq/CyberChef.git
synced 2024-11-02 22:21:01 +01:00
16 lines
338 B
JavaScript
16 lines
338 B
JavaScript
|
module.exports = {
|
||
|
plugins: [
|
||
|
require("postcss-import"),
|
||
|
require("autoprefixer")({
|
||
|
browsers: [
|
||
|
"Chrome >= 40",
|
||
|
"Firefox >= 35",
|
||
|
"Edge >= 14"
|
||
|
]
|
||
|
}),
|
||
|
require("postcss-css-variables")({
|
||
|
preserve: true
|
||
|
}),
|
||
|
]
|
||
|
};
|