Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mozilla/ssl-config-generator.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorApril King <april@mozilla.com>2019-06-03 20:56:26 +0300
committerApril King <april@mozilla.com>2019-06-03 20:56:26 +0300
commita42b758a697ee39762edbeb612ece4c9f18b24b4 (patch)
treeb8fd5f771dbfeb08149edeff82132c2546c2000d /config
parentc01a57e037bd43cc78e28ef626adbf30a2e53af0 (diff)
Fix CNAME generation
Diffstat (limited to 'config')
-rw-r--r--config/CNAME1
-rwxr-xr-xconfig/webpack.config.js6
2 files changed, 7 insertions, 0 deletions
diff --git a/config/CNAME b/config/CNAME
new file mode 100644
index 0000000..e8e93e4
--- /dev/null
+++ b/config/CNAME
@@ -0,0 +1 @@
+ssl-config.mozilla.org \ No newline at end of file
diff --git a/config/webpack.config.js b/config/webpack.config.js
index cd1c544..eb7edb1 100755
--- a/config/webpack.config.js
+++ b/config/webpack.config.js
@@ -38,6 +38,12 @@ const plugins = [
flatten: false
}
]),
+ new CopyWebpackPlugin([
+ {
+ from: 'config/CNAME',
+ flatten: false
+ }
+ ]),
new MiniCssExtractPlugin({
filename: '[hash].index.css',
})