aboutsummaryrefslogtreecommitdiff
path: root/www/webpack.config.js
diff options
context:
space:
mode:
Diffstat (limited to 'www/webpack.config.js')
-rw-r--r--www/webpack.config.js8
1 files changed, 8 insertions, 0 deletions
diff --git a/www/webpack.config.js b/www/webpack.config.js
index 80ad814..0a1e226 100644
--- a/www/webpack.config.js
+++ b/www/webpack.config.js
@@ -11,4 +11,12 @@ module.exports = {
11 plugins: [ 11 plugins: [
12 new CopyWebpackPlugin(['index.html']) 12 new CopyWebpackPlugin(['index.html'])
13 ], 13 ],
14 module: {
15 rules: [
16 {
17 test: /\.txt$/i,
18 use: 'raw-loader',
19 },
20 ],
21 },
14}; 22};