egoist/rollup-plugin-postcss
GitHub で見るKeep "import css" line to the output file?
Open
#204 opened on 2019年11月15日
enhancementhelp wanted
説明
Rollup Config
export default {
input: "src/index.js",
output: {
file: "dist/index.js",
format: "cjs"
},
plugins: [
postcss({
extract: true
})
]
};
src/index.js
import "./index.less";
Expected bundle
require("./index.css")
- But the actual result is an empty bundle