aboutsummaryrefslogtreecommitdiff
path: root/webpack.config.js
blob: 32aa33aba249a6a969f81838313b9967baaf86b2 (plain) (blame)
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
const MiniCssExtractPlugin = require("mini-css-extract-plugin");
const path = require('path');

module.exports = {
    mode: "none",
    entry: "./src/public/app.js",
    output: {
        path: path.resolve(__dirname, "public/assets/js"),
        filename: "bundle.js"
    },
    resolve: {
        alias: {
            "node_modules": path.join(__dirname, "node_modules")
        }
    },
    module: {
        rules: [
            {
                test: /\.scss$/,
                use: [
                    MiniCssExtractPlugin.loader,
                    "css-loader",
                    "sass-loader"
                ]
            }
        ]
    },
    plugins: [
        new MiniCssExtractPlugin({
            filename: "../css/bundle.css"
        })
    ]
};