aboutsummaryrefslogtreecommitdiff
path: root/webpack.config.js
diff options
context:
space:
mode:
authorCaleb Mabry <36182383+caleb-mabry@users.noreply.github.com>2022-03-23 15:29:59 -0400
committerGitHub <noreply@github.com>2022-03-23 15:29:59 -0400
commit2e734ec14fc760f80e2a9dc81cdf9269220bb791 (patch)
tree8cd2df719cfd42449712408d6dbc340bd470912e /webpack.config.js
parenta263dc01e9d9bbb6c3cc56cfa9f3acb6bbfdc595 (diff)
parent313d3db36e5252cfa06e9a48ef681385730bb7a4 (diff)
Merge pull request #117 from caleb-mabry/audio-to-html
Adding blip sounds to actual audio tags
Diffstat (limited to 'webpack.config.js')
-rw-r--r--webpack.config.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/webpack.config.js b/webpack.config.js
index 68546c3..edfe0a4 100644
--- a/webpack.config.js
+++ b/webpack.config.js
@@ -17,6 +17,7 @@ module.exports = {
client: './webAO/client.js',
master: './webAO/master.ts',
dom: glob.sync('./webAO/dom/*.js'),
+ components: glob.sync('./webAO/components/*.js'),
},
node: {
global: true,
@@ -92,7 +93,7 @@ module.exports = {
new HtmlWebpackPlugin({
title: 'Attorney Online',
filename: 'client.html',
- chunks: ['client', 'ui', 'dom'],
+ chunks: ['client', 'ui', 'dom', 'components'],
template: 'public/client.html',
}),
new webpack.DefinePlugin({