Nod

Submit a ticket My Tickets
Welcome
Login  Sign up

Webpack

Webpack is a module bundler; it takes modules with dependencies and emits static assets representing those modules. Listed below is information for Webpack use when creating assets.


Compiling / Transpiling
If using newer technologies (ES6, Flexbox, HTML5, React.js, etc.) you will need to compile and transpile your code to be compatible with Nod devices.
Files at root level
Ensure that all files, such as images and stylesheets, are not compiled into seperate Styles or Image folders. This will ensure that all files are accessible at the root level and will be rendered.
Polyfills

When using ES6 webpack will require additional polyfills to be installed. Polyfills will need to be installed through NPM, and required/imported into the polyfills.js folder. This file is run at the entry point of the webpack.config files. 


Installation instructions can be found here: https://babeljs.io/docs/usage/polyfill/


Prefixing for older browser versions
In the webpack.config files autoprefixer function takes an object of browsers that declares settings. Versions of browsers can be adjusted to take older versions into account

Did you find it helpful? Yes No

Send feedback
Sorry we couldn't be helpful. Help us improve this article with your feedback.