diff --git a/.changeset/strong-suits-end.md b/.changeset/strong-suits-end.md new file mode 100644 index 00000000..12dbf977 --- /dev/null +++ b/.changeset/strong-suits-end.md @@ -0,0 +1,12 @@ +--- +'playroom': minor +--- + +Add custom entry file support + +You can provide a custom entry file via the `entry` option, which is a path to a file that runs some code before everything else. For example, if you wanted to apply a CSS reset or other global styles, polyfills etc.: + +```js +import '../path/to/your/theming-system/reset'; +import '../path/to/your/theming-system/global-styles.css'; +```