You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/using-rollup.md
+42-12Lines changed: 42 additions & 12 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,29 +10,59 @@ Follow the [installation](https://github.com/DevExpress/devextreme-angular#insta
10
10
11
11
## <aname="configuration"></a>Configure Rollup for DevExtreme ##
12
12
13
-
There is [a limitation](https://github.com/DevExpress/devextreme-angular/issues/283) in bundling with Rollup.
13
+
There is [a limitation](https://github.com/DevExpress/devextreme-angular/issues/353) in bundling with Rollup.
14
14
Make sure that you use [long paths](https://github.com/DevExpress/devextreme-angular/#bundlers-without-tree-shaking-support) for DevExtreme Angular modules.
15
15
16
16
Ensure that the following plugins are included:
17
17
18
18
```js
19
-
var nodeResolve =require('rollup-plugin-node-resolve');
20
-
var commonjs =require('rollup-plugin-commonjs');
21
-
var builtins =require('rollup-plugin-node-builtins');
22
-
var globals =require('rollup-plugin-node-globals');
Import the required [DevExtreme css files](https://js.devexpress.com/Documentation/Guide/Themes/Predefined_Themes/).
40
+
Import the required [DevExtreme css files](https://js.devexpress.com/Documentation/Guide/Themes/Predefined_Themes/).
41
+
42
+
43
+
In order to create a single CSS bundle, you can use the `rollup-plugin-css-only` package. Import DevExtreme CSS files prior to widget modules as follows:
0 commit comments