mirror of
https://github.com/pyscript/pyscript.git
synced 2025-12-20 10:47:35 -05:00
21 lines
438 B
JavaScript
21 lines
438 B
JavaScript
import postcss from "rollup-plugin-postcss";
|
|
|
|
export default {
|
|
input: "./src/core.css",
|
|
plugins: [
|
|
postcss({
|
|
extract: true,
|
|
sourceMap: false,
|
|
minimize: !process.env.NO_MIN,
|
|
plugins: [],
|
|
}),
|
|
],
|
|
output: {
|
|
file: "./core.css",
|
|
},
|
|
onwarn(warning, warn) {
|
|
if (warning.code === "FILE_NAME_CONFLICT") return;
|
|
warn(warning);
|
|
},
|
|
};
|