-
Notifications
You must be signed in to change notification settings - Fork 5
/
webpack.config.js
98 lines (93 loc) · 2.12 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
const path = require('path');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const CopyPlugin = require('copy-webpack-plugin');
const FaviconsWebpackPlugin = require('favicons-webpack-plugin');
const {EnvironmentPlugin, DefinePlugin} = require('webpack');
const outDir = process.env.NEXT ?
'next/' : '';
const publicPath = '/lit-transition/' + outDir;
const config = {
devtool: 'source-map',
entry: {
doc: './doc/index.js',
'lit-transition': 'lit-transition'
},
output: {
path: path.resolve(__dirname, 'dist-doc', outDir),
publicPath,
filename: '[name].js'
},
devServer: {
historyApiFallback: {
index: publicPath,
disableDotRule: true
},
},
resolve: {
alias: {
'lit-transition': path.resolve(__dirname,'src')
},
extensions: [ '.ts', '.js' ],
},
module: {
rules: [
{
test: /\.ts?$/,
use: [
{
loader: 'ts-loader',
options: {
configFile: path.join(__dirname, 'tsconfig.json')
}
}
],
exclude: /node_modules/,
},
{
test: /\.s[ac]ss$/i,
use: [
// Creates `style` nodes from JS strings
'style-loader',
// Translates CSS into CommonJS
'css-loader',
// Compiles Sass to CSS
'sass-loader',
],
},
{
test: /\.css$/i,
use: [
// Creates `style` nodes from JS strings
'style-loader',
// Translates CSS into CommonJS
'css-loader',
],
},
{
test: /\.svg$/,
loader: './doc/loaders/svg-loader'
}
],
},
plugins: [
new EnvironmentPlugin(['NEXT','DEBUG']),
new DefinePlugin({
'PUBLIC_PATH': JSON.stringify(publicPath)
}),
new HtmlWebpackPlugin({
template: 'doc/index.html',
chunks: ['doc'],
inject: true
}),
new CopyPlugin([
{
from: 'doc/assets',
to: 'assets'
},
]),
new FaviconsWebpackPlugin(
path.join(__dirname, 'doc/assets/favicon.svg')
)
]
};
module.exports = config