---
title: With webpack
layout: documentation
doc-tab: customize
doc-subtab: webpack
breadcrumb:
- home
- documentation
- customize
- customize-webpack
---
{% capture dependencies %}
npm install bulma --save-dev
npm install css-loader --save-dev
npm install extract-text-webpack-plugin@next --save-dev
npm install node-sass --save-dev
npm install sass-loader --save-dev
npm install style-loader --save-dev
npm install webpack --save-dev
npm install webpack-cli --save-dev
{% endcapture %}
{% capture package %}
{
"name": "mybulma",
"version": "1.0.0",
"main": "webpack.config.js",
"license": "MIT",
"devDependencies": {
"bulma": "^0.7.2",
"css-loader": "^1.0.0",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"node-sass": "^4.9.2",
"sass-loader": "^7.0.3",
"style-loader": "^0.21.0",
"webpack": "^4.16.0",
"webpack-cli": "^3.0.8"
}
}
{% endcapture %}
{% capture step_2 %}
Install the packages required to parse and build your CSS:
{% highlight bash %}{{ dependencies }}{% endhighlight %}
Your package.json
should look like this at this point.
{% highlight bash %}{{ package }}{% endhighlight %}
{% endcapture %}
{% capture config %}
const path = require('path');
const ExtractTextPlugin = require("extract-text-webpack-plugin");
module.exports = {
entry: './src/index.js',
output: {
path: path.resolve(__dirname, 'dist'),
filename: 'js/bundle.js'
},
module: {
rules: [{
test: /\.scss$/,
use: ExtractTextPlugin.extract({
fallback: 'style-loader',
use: [
'css-loader',
'sass-loader'
]
})
}]
},
plugins: [
new ExtractTextPlugin('css/mystyles.css'),
]
};
{% endcapture %}
{% capture configv4 %}
const path = require('path');
const MiniCssExtractPlugin = require('mini-css-extract-plugin')
module.exports = {
entry: './src/index.js',
output: {
path: path.resolve(__dirname, 'dist'),
filename: 'js/bundle.js'
},
module: {
rules: [{
test: /\.scss$/,
use: [
MiniCssExtractPlugin.loader,
{
loader: 'css-loader'
},
{
loader: 'sass-loader',
options: {
sourceMap: true,
// options...
}
}
]
}]
},
plugins: [
new MiniCssExtractPlugin({
filename: 'css/[name].bundle.css'
}),
]
};
{% endcapture %}
{% capture step_3 %}
Create a webpack.config.js
file:
{% highlight js %}{{ config }}{% endhighlight %}
This setup takes the src
folder as input, and outputs in the dist
folder.
{% endcapture %}
{% capture step_3_5 %}
Create a webpack.config.js
file:
{% highlight js %}{{ configv4 }}{% endhighlight %}
This setup takes the src
folder as input, and outputs in the dist
folder.
{% endcapture %}
{% capture require_css %}
require('./mystyles.scss');
{% endcapture %}
{% capture step_4 %}
Create a src
folder in which you add a file called index.js
with the following content:
{% highlight js %}{{ require_css }}{% endhighlight %}
{% endcapture %}
{% capture step_6 %}
Create a dist
folder in which you add a css
folder, and a js
folder. Leave these last two folders empty. Their content will be generated by the webpack build.
{% endcapture %}
{% capture webpack_script %}
"scripts": {
"build": "webpack --mode production"
},
{% endcapture %}
{% capture npm_build %}
npm run build
{% endcapture %}
{% capture npm_build_success %}
Rendering Complete, saving .css file...
Wrote CSS to /path/to/mybulma/css/mystyles.css
{% endcapture %}
{% capture step_8 %}
In package.json
, add the following:
{% highlight html %}{{ webpack_script }}{% endhighlight %}
To test it out, go in your terminal and run the following command:
{% highlight bash %}{{ npm_build }}{% endhighlight %}
{% endcapture %}
{% include steps/create-package.html
number="1"
entry="webpack.config.js"
%}
{% include components/step.html
title="2. Install the dev dependencies"
content=step_2
%}
{% include components/step.html
title="3. Create a webpack config (Webpack <= 3)"
content=step_3
%}
{% include components/step.html
title="3.5. Create a webpack config (Webpack 4)"
content=step_3_5
%}
{% include components/step.html
title="4. Create a src
folder"
content=step_4
%}
{% include steps/create-sass-file.html
number="5"
path='~bulma/bulma'
bis=true
%}
{% include components/step.html
title="6. Create a dist
folder"
content=step_6
%}
{% include steps/create-html-page.html
number="7"
dist=true
%}
{% include components/step.html
title="8. Add node scripts to build your bundle"
content=step_8
%}
{% include steps/add-custom-styles.html
number="9"
build=true
%}