| 1234567891011121314151617 |
- /**
- * Reproduces the gulp `build` task → v4-style.min.css (the site-wide stylesheet).
- *
- * Imports the same files in the same order gulp concatenates them; webpack's
- * MiniCssExtractPlugin emits one stylesheet to the THEME ROOT as v4-style.min.css,
- * so the existing `style-min` enqueue keeps working unchanged.
- *
- * css-loader runs with { url: false } so the `url('fonts/…')` paths in fonts.css
- * and style.css are left exactly as-is — they resolve from the theme root, same as
- * the gulp output. This is a faithful 1:1 of the old build (prune the dead inputs —
- * e.g. fullcalendar — in Phase 5, not here).
- */
- import '../css/fonts.css';
- import '../css/v4-animate.css';
- import '../css/v4-fullcalendar.css';
- import '../css/styles.css';
- import '../style.css';
|