Skip to content

Commit

Permalink
exclude css from rollout
Browse files Browse the repository at this point in the history
  • Loading branch information
liang-faan committed Nov 27, 2023
1 parent 09a617a commit 8741a07
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions rollup.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -48,13 +48,13 @@ export default [
plugins: [dts()],
external: [/\.css$/], // telling rollup anything that is .css aren't part of type exports
},
{
input: "src/App.css",
output: [{ file: "dist/swimlane-style.css" }],
plugins: [
postcss({
minimize: true,
}),
],
},
// {
// input: "src/App.css",
// output: [{ file: "dist/swimlane-style.css" }],
// plugins: [
// postcss({
// minimize: true,
// }),
// ],
// },
];

0 comments on commit 8741a07

Please sign in to comment.