-
Notifications
You must be signed in to change notification settings - Fork 692
/
Copy pathwebpack.config.js
63 lines (61 loc) · 1.62 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
62
63
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 = {
mode: 'development',
context: __dirname,
entry: './index.js',
output: {
path: path.join(__dirname, 'dist'),
filename: 'example.js'
},
externals: {},
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 mdx transforming loader.
{
test: /\.mdx$/,
use: [babelLoader, require.resolve('spectacle-mdx-loader')]
},
{
test: /\.(png|svg|jpg|gif)$/,
use: [require.resolve('file-loader')]
}
]
},
plugins: [
new HtmlWebpackPlugin({
title: 'Spectacle MDX Development Example',
template: `./index.html`
})
],
resolve: {
extensions: ['.tsx', '.ts', '.jsx', '.js'],
modules: [path.join(__dirname, 'src'), 'node_modules']
}
};