@grafikr/shopify-devserver
v2.1.0
Published
Shopify DevServer is a package to make [webpack DevSever](https://webpack.js.org/configuration/dev-server/) work with Shopify.
Downloads
1,224
Readme
Shopify DevServer
Shopify DevServer is a package to make webpack DevSever work with Shopify.
Installation
You can install the package using Yarn:
$ yarn install @grafikr/shopify-devserver --save-dev
Usage
In your webpack config file, add the package to the devServer
attribute. It could look like this:
const devServer = require('@grafikr/shopify-devserver');
module.exports = (env) => ({
...
devServer: devServer(env),
...
});
Once this is done, you should be able to run webpack with the serve command.
For easy integration, you can add it as an action to your scripts in package.json
.
{
"scripts": {
"serve": "webpack serve --mode development --hot"
}
}