summaryrefslogtreecommitdiffstats
path: root/projects/text_to_speech/webpack.config.js
diff options
context:
space:
mode:
authorH Lohaus <hlohaus@users.noreply.github.com>2024-04-09 19:40:42 +0200
committerGitHub <noreply@github.com>2024-04-09 19:40:42 +0200
commit4c23b4cad4744e20da7ccffb303503ea627df7c2 (patch)
treea032e6ebd494136ba35e049b06aa4af45558b540 /projects/text_to_speech/webpack.config.js
parentMerge pull request #1809 from ochen1/patch-1 (diff)
parentAdd project files (diff)
downloadgpt4free-4c23b4cad4744e20da7ccffb303503ea627df7c2.tar
gpt4free-4c23b4cad4744e20da7ccffb303503ea627df7c2.tar.gz
gpt4free-4c23b4cad4744e20da7ccffb303503ea627df7c2.tar.bz2
gpt4free-4c23b4cad4744e20da7ccffb303503ea627df7c2.tar.lz
gpt4free-4c23b4cad4744e20da7ccffb303503ea627df7c2.tar.xz
gpt4free-4c23b4cad4744e20da7ccffb303503ea627df7c2.tar.zst
gpt4free-4c23b4cad4744e20da7ccffb303503ea627df7c2.zip
Diffstat (limited to 'projects/text_to_speech/webpack.config.js')
-rw-r--r--projects/text_to_speech/webpack.config.js20
1 files changed, 20 insertions, 0 deletions
diff --git a/projects/text_to_speech/webpack.config.js b/projects/text_to_speech/webpack.config.js
new file mode 100644
index 00000000..0b984592
--- /dev/null
+++ b/projects/text_to_speech/webpack.config.js
@@ -0,0 +1,20 @@
+const path = require('path');
+const webpack = require('webpack');
+
+module.exports = {
+ mode: 'production',
+ entry: {
+ server: './index.js',
+ },
+ output: {
+ path: path.join(__dirname, 'build'),
+ filename: 'index.js'
+ },
+ module: {
+ rules: [
+ {
+ exclude: /node_modules/
+ }
+ ]
+ }
+}; \ No newline at end of file