Giter Site home page Giter Site logo

Comments (13)

berniegreen avatar berniegreen commented on July 29, 2024 1

Hi @enuchi sorry for the delayed response. I scrapped Material UI and decided to go with Semantic UI. I got that working along with some other libraries like GSAP. I wondering though how I use packages that don't have just one file for the CDN. Like react-toastify for example https://www.jsdelivr.com/package/npm/react-toastify Is this possible or only if I include each individual file in the HTML file after building is done?

from react-google-apps-script.

enuchi avatar enuchi commented on July 29, 2024

If you look at the bundled code it is still using the cdn (unpkg.com) to pull in react, react-dom and prop-types, and any other libraries it identifies, which greatly reduces the bundle size. But you're right, it inlines react-addons-css-transition-group for some reason. I'll look into why it's doing that.

You are always going to get some inlined js, which is from the actual code you're writing, such as your components. The reason for inlining is because google apps scripts doesn't allow you to load scripts from external files. The reason for using a cdn is so you don't have to inline libraries like react, and to take advantage of browser caching.

For production builds the js is minified, so it shouldn't be too big, but this will depend on how big your app is.

from react-google-apps-script.

gox-ai avatar gox-ai commented on July 29, 2024

Hi enuchi, thanks for getting back. There is react-addons-css-transition-group also I tried importing ant-design which was also inlined. This makes the app size really big... I am just learning webpack, your setup is really good for using react. Thank you for the good work.

from react-google-apps-script.

enuchi avatar enuchi commented on July 29, 2024

Hi @kickbox @gox-ai, thanks for pointing out the problem with the build. I've made some changes to the repo and the transition group package should be inlined now.

The webpack plugin I've been using, https://github.com/mastilver/dynamic-cdn-webpack-plugin, does not automatically add CDN urls for all packages, only the most popular ones. I've added the ability to add your own in the webpack file, here.

Do you mind trying it with ant-design and letting me know if it works?

Also see the updated explanation in the readme:
https://github.com/enuchi/React-Google-Apps-Script#adding-new-libraries-and-packages

from react-google-apps-script.

enuchi avatar enuchi commented on July 29, 2024

ref #33

from react-google-apps-script.

kickbox avatar kickbox commented on July 29, 2024

Thank you so much enuchi. Appreciate it. I suddenly have to go bug fixing my other app. I will post the feedback within this week.

from react-google-apps-script.

berniegreen avatar berniegreen commented on July 29, 2024

I'm having a hard time building after adding the CDNs also. Here is what I added into the webpack.config.js file below the react-transition-group:

case '@material-ui/core': return { name: packageName, var: 'MaterialCore', version: packageVersion, url: https://unpkg.com/@material-ui/core@latest/umd/material-ui.development.js`,
};
case '@material-ui/pickers':
return {
name: packageName,
var: 'MaterialPickers',
version: packageVersion,
url: https://unpkg.com/@material-ui/[email protected]/dist/material-ui-pickers.js,
};
case '@date-io/date-fns':
return {
name: packageName,
var: 'DateFns',
version: packageVersion,
url: https://unpkg.com/@date-io/[email protected]/build/index.js,
};`

I've never done anything with webpack. Did I do something wrong?

from react-google-apps-script.

enuchi avatar enuchi commented on July 29, 2024

what's the error you're getting when you try to build?

from react-google-apps-script.

enuchi avatar enuchi commented on July 29, 2024

@berniegreen try using MaterialUI for the "var" value for @material-ui/core case?

from react-google-apps-script.

berniegreen avatar berniegreen commented on July 29, 2024

@enuchi Hi Elisha. I switched the it to MaterialUI and here is what I copied from the terminal:

/mastilver/module-to-cdn/blob/master/modules.json
❌ '@material-ui/core/InputAdornment' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/objectWithoutProperties' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/slicedToArray' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@material-ui/core/SvgIcon' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/createClass' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/possibleConstructorReturn' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/classCallCheck' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/inherits' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/getPrototypeOf' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@material-ui/core/CircularProgress' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@material-ui/core/DialogActions' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@material-ui/core/DialogContent' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@material-ui/core/Dialog' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@material-ui/core/Popover' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@material-ui/core/Tab' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@material-ui/core/Grid' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@material-ui/core/Tabs' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@material-ui/core/Paper' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ 'rifm' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
✔️ 'react-transition-group' will be served by https://unpkg.com/react-transition-
group/dist/react-transition-group.min.js
❌ '@babel/runtime/helpers/esm/defineProperty' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ 'clsx' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@material-ui/core/styles' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@material-ui/core/Typography' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@material-ui/core/Button' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/objectWithoutProperties' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@material-ui/core/Toolbar' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@material-ui/core/TextField' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ 'rifm' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@material-ui/core/IconButton' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@material-ui/core/InputAdornment' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/slicedToArray' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@material-ui/core/SvgIcon' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/classCallCheck' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/createClass' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/possibleConstructorReturn' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/getPrototypeOf' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@material-ui/core/Popover' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/inherits' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@material-ui/core/Dialog' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@material-ui/core/DialogContent' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@material-ui/core/DialogActions' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@material-ui/core/CircularProgress' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/defineProperty' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/defineProperty' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/defineProperty' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/defineProperty' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/slicedToArray' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ 'rifm' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@material-ui/core/SvgIcon' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@material-ui/core/InputAdornment' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@material-ui/core/IconButton' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@material-ui/core/TextField' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@material-ui/core/Toolbar' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@material-ui/core/styles' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@material-ui/core/Button' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@material-ui/core/Typography' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/objectWithoutProperties' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ 'clsx' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@material-ui/core/CircularProgress' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/inherits' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/getPrototypeOf' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/possibleConstructorReturn' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/classCallCheck' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/createClass' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@material-ui/core/SvgIcon' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@material-ui/core/IconButton' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@material-ui/core/styles' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@material-ui/core/Typography' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/objectWithoutProperties' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ 'clsx' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@material-ui/core/Paper' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@material-ui/core/Tabs' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@material-ui/core/Tab' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@material-ui/core/Popover' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@material-ui/core/Grid' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@material-ui/core/Dialog' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@material-ui/core/DialogContent' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/inheritsLoose' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@material-ui/styles' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@material-ui/core/DialogActions' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@material-ui/core/CircularProgress' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/getPrototypeOf' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/inherits' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/possibleConstructorReturn' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/createClass' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/classCallCheck' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/slicedToArray' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@material-ui/core/SvgIcon' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@material-ui/core/InputAdornment' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@material-ui/core/IconButton' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@material-ui/core/TextField' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ 'rifm' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@material-ui/core/Toolbar' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@material-ui/core/Button' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@material-ui/core/Typography' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@material-ui/core/styles' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/objectWithoutProperties' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ 'clsx' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/inherits' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/getPrototypeOf' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/possibleConstructorReturn' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/createClass' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@material-ui/core/styles' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ 'clsx' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/classCallCheck' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/slicedToArray' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@material-ui/core/styles' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@material-ui/core/Typography' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/objectWithoutProperties' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ 'clsx' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@material-ui/core/Popover' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@material-ui/core/Dialog' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@material-ui/core/DialogActions' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@material-ui/core/DialogContent' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@material-ui/core/Button' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@material-ui/core/styles' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/objectWithoutProperties' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ 'clsx' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@material-ui/core/Popover' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@material-ui/core/Dialog' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@material-ui/core/DialogActions' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@material-ui/core/DialogContent' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@material-ui/core/CircularProgress' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/inherits' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/getPrototypeOf' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/possibleConstructorReturn' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/createClass' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/classCallCheck' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/slicedToArray' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@material-ui/core/SvgIcon' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ 'rifm' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@material-ui/core/InputAdornment' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@material-ui/core/IconButton' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@material-ui/core/TextField' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@material-ui/core/Toolbar' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@material-ui/core/styles' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@material-ui/core/Button' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/objectWithoutProperties' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ 'clsx' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/objectWithoutProperties' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ 'clsx' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ 'clsx' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/defineProperty' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ 'clsx' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/objectWithoutProperties' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/objectWithoutProperties' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ 'clsx' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/objectWithoutProperties' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/defineProperty' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ 'clsx' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/objectWithoutProperties' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@material-ui/utils' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ 'clsx' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@material-ui/utils' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/objectWithoutProperties' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ 'clsx' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@material-ui/styles' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/objectWithoutProperties' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@material-ui/styles' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@material-ui/styles' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/objectWithoutProperties' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@material-ui/styles' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/defineProperty' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@material-ui/utils' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/objectWithoutProperties' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ 'clsx' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
info: WebpackClean - removed D:\Programming\greenxmax-sidebar\dist\main.js
info: WebpackClean - DONE
❌ '@babel/runtime/helpers/esm/objectWithoutProperties' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@material-ui/utils' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ 'clsx' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/defineProperty' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/objectWithoutProperties' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ 'react-is' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ 'clsx' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@material-ui/utils' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/defineProperty' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/objectWithoutProperties' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@material-ui/utils' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ 'clsx' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ 'clsx' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/defineProperty' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/objectWithoutProperties' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ 'clsx' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/objectWithoutProperties' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/objectWithoutProperties' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@material-ui/utils' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/objectWithoutProperties' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ 'clsx' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@material-ui/utils' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ 'clsx' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@material-ui/utils' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/objectWithoutProperties' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@material-ui/styles' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@material-ui/styles' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ 'clsx' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/objectWithoutProperties' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@material-ui/core/Typography' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/objectWithoutProperties' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/objectWithoutProperties' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ 'clsx' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@material-ui/core/styles' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ 'clsx' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/getPrototypeOf' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/inherits' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/possibleConstructorReturn' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/createClass' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/classCallCheck' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@material-ui/core/styles' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@material-ui/core/Typography' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@material-ui/core/IconButton' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ 'clsx' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@material-ui/core/styles' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@material-ui/core/Typography' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/objectWithoutProperties' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ 'clsx' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/defineProperty' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/objectWithoutProperties' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@material-ui/utils' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@material-ui/system' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/objectWithoutProperties' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@material-ui/utils' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/objectWithoutProperties' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/objectWithoutProperties' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ 'clsx' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@material-ui/utils' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/objectWithoutProperties' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ 'clsx' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/objectWithoutProperties' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/createClass' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/toConsumableArray' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/classCallCheck' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@material-ui/react-transition-group' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/objectWithoutProperties' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@material-ui/styles' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@material-ui/utils' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/defineProperty' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/typeof' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ 'react-is' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/typeof' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/toConsumableArray' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ 'clsx' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/objectWithoutProperties' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@material-ui/react-transition-group' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/objectWithoutProperties' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ 'clsx' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/objectWithoutProperties' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@material-ui/react-transition-group' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/objectWithoutProperties' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@material-ui/react-transition-group' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@material-ui/react-transition-group' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/objectWithoutProperties' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ 'clsx' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/objectWithoutProperties' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ 'clsx' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/objectWithoutProperties' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ 'clsx' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/objectWithoutProperties' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ 'clsx' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@material-ui/utils' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/objectWithoutProperties' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@material-ui/utils' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ 'clsx' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@material-ui/utils' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@material-ui/utils' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@material-ui/utils' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ 'clsx' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ 'hoist-non-react-statics' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ 'jss-plugin-rule-value-function' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ 'jss-plugin-props-sort' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ 'jss-plugin-vendor-prefixer' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/objectWithoutProperties' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ 'jss-plugin-default-unit' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ 'jss' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ 'jss-plugin-camel-case' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/objectWithoutProperties' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ 'jss-plugin-nested' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ 'jss-plugin-global' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ 'jss' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/createClass' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ 'clsx' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/classCallCheck' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ 'jss' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@material-ui/utils' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/objectWithoutProperties' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@material-ui/utils' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ 'clsx' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/objectWithoutProperties' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ 'hoist-non-react-statics' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@material-ui/utils' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/objectWithoutProperties' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@material-ui/utils' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ 'hoist-non-react-statics' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/objectWithoutProperties' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/objectWithoutProperties' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@material-ui/styles' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/objectWithoutProperties' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/objectWithoutProperties' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ 'clsx' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/objectWithoutProperties' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@material-ui/utils' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ 'clsx' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@material-ui/utils' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/defineProperty' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ 'clsx' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/objectWithoutProperties' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/objectWithoutProperties' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/objectWithoutProperties' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/defineProperty' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/slicedToArray' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/toConsumableArray' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/typeof' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/toConsumableArray' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@material-ui/utils' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/toConsumableArray' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/slicedToArray' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/objectWithoutProperties' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/typeof' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ 'react-is' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ 'clsx' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@material-ui/utils' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@material-ui/utils' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/inheritsLoose' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/objectWithoutPropertiesLoose' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/inheritsLoose' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/objectWithoutPropertiesLoose' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/assertThisInitialized' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/inheritsLoose' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/objectWithoutPropertiesLoose' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/inheritsLoose' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/objectWithoutProperties' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ 'clsx' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ 'dom-helpers/addClass' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ 'dom-helpers/removeClass' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ 'react-is' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ 'jss' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ 'css-vendor' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/inheritsLoose' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/objectWithoutPropertiesLoose' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ 'jss' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ 'jss' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ 'tiny-warning' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/objectWithoutProperties' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ 'clsx' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@material-ui/utils' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ 'hyphenate-style-name' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ 'jss' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ 'tiny-warning' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ 'react-is' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/objectWithoutProperties' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ 'clsx' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@material-ui/utils' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@material-ui/utils' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/typeof' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ 'tiny-warning' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/createClass' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/inheritsLoose' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/assertThisInitialized' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/objectWithoutPropertiesLoose' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ 'is-in-browser' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ 'is-in-browser' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/toConsumableArray' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/objectWithoutProperties' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/objectWithoutProperties' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ 'react-is' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ 'clsx' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/objectWithoutProperties' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
Hash: de94873260f2336d6623077a9b5ed160f9571fbbab8d506ad65c56142f3bd415fee35b86006cc293
Version: webpack 4.42.0
Child COPY APPSSCRIPT.JSON:
Hash: de94873260f2336d6623
Time: 3087ms
Built at: 05/11/2020 9:26:40 AM
Asset Size Chunks Chunk Names
appsscript.json 266 bytes [emitted]
main.js 1.15 KiB 0 [emitted] main
Entrypoint main = main.js
[0] ./appsscript.json 266 bytes {0} [built]
Child CLIENT - main dialog:
Hash: 077a9b5ed160f9571fbb
Time: 8922ms
Built at: 05/11/2020 9:26:46 AM
Asset Size Chunks Chunk Names
main.html 9.1 KiB [emitted]
main.js 8.44 KiB 0 [emitted] main
Entrypoint main = main.js
[0] external "React" 42 bytes {0} [built]
[1] external "PropTypes" 42 bytes {0} [built]
[2] external "ReactTransitionGroup" 42 bytes {0} [built]
[3] external "ReactDOM" 42 bytes {0} [built]
[4] ./src/client/styles.css 568 bytes {0} [built]
[6] ./node_modules/css-loader/dist/cjs.js!./src/client/styles.css 2.05 KiB {0} [built]
[8] ./src/client/MainDialog.jsx + 4 modules 4.19 KiB {0} [built]
| ./src/client/MainDialog.jsx 226 bytes [built]
| ./src/client/server.js 880 bytes [built]
| + 3 hidden modules
+ 2 hidden modules
Child html-webpack-plugin for "main.html":
1 asset
Entrypoint undefined = main.html
[0] ./node_modules/html-webpack-plugin/lib/loader.js!./src/client/dialog-template.html 412 bytes {0} [built]
[2] (webpack)/buildin/global.js 472 bytes {0} [built]
[3] (webpack)/buildin/module.js 497 bytes {0} [built]
+ 1 hidden module
Child CLIENT - about sidebar:
Hash: ab8d506ad65c56142f3b
Time: 10856ms
Built at: 05/11/2020 9:26:48 AM
Asset Size Chunks Chunk Names
about.html 54.9 KiB [emitted]
main.js 54.2 KiB 0 [emitted] main
Entrypoint main = main.js
[0] external "React" 42 bytes {0} [built]
[1] external "ReactDOM" 42 bytes {0} [built]
[2] ./src/client/styles.css 568 bytes {0} [built]
[4] ./node_modules/css-loader/dist/cjs.js!./src/client/styles.css 2.05 KiB
{0} [built]
[6] external "PropTypes" 42 bytes {0} [built]
[7] ./src/client/AboutDialog.jsx + 72 modules 210 KiB {0} [built]
| ./src/client/AboutDialog.jsx 391 bytes [built]
| + 72 hidden modules
[285] external "ReactTransitionGroup" 42 bytes [built]
+ 279 hidden modules
Child html-webpack-plugin for "about.html":
1 asset
Entrypoint undefined = about.html
[0] ./node_modules/html-webpack-plugin/lib/loader.js!./src/client/dialog-template.html 412 bytes {0} [built]
[2] (webpack)/buildin/global.js 472 bytes {0} [built]
[3] (webpack)/buildin/module.js 497 bytes {0} [built]
+ 1 hidden module
Child SERVER:
Hash: d415fee35b86006cc293
Time: 7585ms
Built at: 05/11/2020 9:26:45 AM
Asset Size Chunks Chunk Names
code.js 5.62 KiB 0 [emitted] main
Entrypoint main = code.js
[0] ./src/server/sheets.js 992 bytes {0} [built]
[1] ./src/server/ui.js 561 bytes {0} [built]
[2] ./src/server/index.js 523 bytes {0} [built]
[3] (webpack)/buildin/global.js 472 bytes {0} [built]
info: WebpackClean - removed D:\Programming\greenxmax-sidebar\dist\main.js
info: WebpackClean - DONE
(node:16316) ExperimentalWarning: The fs.promises API is experimental
└─ dist/about.html
└─ dist/appsscript.json
└─ dist/code.js
└─ dist/main.html
Pushed 4 files.

from react-google-apps-script.

enuchi avatar enuchi commented on July 29, 2024

Hi @berniegreen,

Can you confirm if your code is working? Your bundles are all small so it's hard to tell if you're getting a successful build. Can you open the project successfully in a dialog/sidebar?

Which way are you importing:

import CircularProgress from @material-ui/core/CircularProgress

or

import { CircularProgress } from '@material-ui/core'

?

from react-google-apps-script.

enuchi avatar enuchi commented on July 29, 2024

Hi @berniegreen, sorry for the delayed response. Looks like you should be able to just include the one javascript file that's the entrypoint. Believe it's this one: https://cdn.jsdelivr.net/npm/[email protected]/dist/index.min.js

Note that like a lot of component libraries you'll need to import the css file. Easiest way is to add it to the head tag in the provided html template.

from react-google-apps-script.

enuchi avatar enuchi commented on July 29, 2024

Added some more documentation on how to use the cdn webpack plugin. Feel free to reopen this issue if you still need help.

from react-google-apps-script.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.