-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathwebpack.sass.js
36 lines (35 loc) · 1022 Bytes
/
webpack.sass.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
const path = require("path");
const TerserPlugin = require("terser-webpack-plugin");
module.exports = (env, argv) => {
// Return the configuration
return {
entry: "./src/styles/index.scss",
output: {
path: path.resolve(__dirname, "build"),
filename: "styles.js"
},
target: ["web", "es5"],
resolve: {
extensions: [".scss"]
},
optimization: {
minimize: true,
minimizer: [new TerserPlugin()]
},
module: {
rules: [
{
test: /\.(scss)$/,
use: [
// Inject CSS to the page
{ loader: "style-loader" },
// Translate CSS to CommonJS
{ loader: "css-loader" },
// Compile SASS to CSS
{ loader: "sass-loader" }
]
}
]
}
};
}