aboutsummaryrefslogtreecommitdiff
path: root/webpack.config.js
blob: 8d838a42ba42e7fca848f489f38088e7070378ea (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
34
35
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: {
        extensions: ['.js', '.css', '.scss'],
        alias: {
            "fontawesome": path.join(__dirname, "/node_modules/@fortawesome/fontawesome-free/js/all.min.js"),
            "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"
        })
    ]
};