Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion docs/source/upgrade-guide/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ Update the Storybook configuration file {file}`.storybook/main.js`.

```diff
- const scssPlugin = require('razzle-plugin-scss');
+ const scssPlugin = require('@plone/babel-preset-razzle/webpack-plugins/webpack-scss-plugin');
+ const scssPlugin = require('@plone/volto/webpack-plugins/webpack-scss-plugin');
- const createConfig = require('razzle/config/createConfigAsync.js');
+ const createConfig = require('@plone/razzle/config/createConfigAsync.js');
```
Expand Down Expand Up @@ -409,6 +409,13 @@ We pinned the version of `sass` to `1.32.0`, which is the one before they introd
It is unlikely that using this version will cause problems since no real new features were added in later versions that are relevant for Volto developers.
In case that you need a later version of `sass` in your project or add-on, you can override it in your project's {file}`package.json` file.

Update the Storybook configuration file {file}`.storybook/main.js`.

```diff
- const scssPlugin = require('razzle-plugin-scss');
+ const scssPlugin = require('@plone/volto/webpack-plugins/webpack-scss-plugin');
```

### Table block is now wrapped with containers to support horizontal scrolling on small viewports
```{versionadded} Volto 19.0.0-alpha.26
```
Expand Down
1 change: 1 addition & 0 deletions packages/volto/news/8045.documentation
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Added missing steps for `webpack-scss-plugin` in the upgrade guide. @ksuess
Loading