We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 719f497 commit 5d6a459Copy full SHA for 5d6a459
rollup.config.js
@@ -1,3 +1,4 @@
1
+import path from 'path';
2
import babel from 'rollup-plugin-babel';
3
import postcss from 'rollup-plugin-postcss';
4
import peerDepsExternal from 'rollup-plugin-peer-deps-external';
@@ -37,7 +38,7 @@ const config = {
37
38
postcss({
39
modules: true,
40
plugins: [autoprefixer],
- extract: './dist/styles.css'
41
+ extract: path.resolve('dist/styles.css')
42
}),
43
babel({ exclude: 'node_modules/**' }),
44
localResolve(),
0 commit comments