-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.js
61 lines (57 loc) · 1.64 KB
/
webpack.config.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
"use strict";
const path = require("path");
const HtmlWebpackPlugin = require("html-webpack-plugin");
// Customized babel loader with the minimum we need to get `mdx` libraries
// working, which unfortunately codegen JSX instead of JS.
const babelLoader = {
loader: require.resolve("babel-loader"),
options: {
// Use user-provided .babelrc
babelrc: true,
// ... with some additional needed options.
presets: [require.resolve("@babel/preset-react")],
},
};
/**
* Base configuration for the CLI, core, and examples.
*/
module.exports = (env = {}) => ({
mode: env.production ? "production" : "development",
entry: "./src/index.js", // Default for boilerplate generation.
output: {
path: path.resolve(__dirname, env.production ? "dist" : "build"),
filename: "deck.js",
},
devtool: "source-map",
module: {
// Not we use `require.resolve` to make sure to use the loader installed
// within _this_ project's `node_modules` traversal tree.
rules: [
{
test: /\.jsx?$/,
use: [babelLoader],
},
// `.md` files are processed as pure text.
{
test: /\.md$/,
use: [require.resolve("raw-loader")],
},
// `.mdx` files go through babel and our mdx transforming loader.
{
test: /\.mdx$/,
use: [babelLoader, require.resolve("spectacle-mdx-loader")],
},
{
test: /\.(png|svg|jpg|gif|mp4|m4v)$/,
use: [require.resolve("file-loader")],
},
],
},
// Default for boilerplate generation.
plugins: [
new HtmlWebpackPlugin({
title: "Moving Pictures",
template: "./src/index.html",
}),
],
});