1
0
mirror of https://github.com/mgerb/classic-wow-forums synced 2026-01-12 01:52:49 +00:00

added realm - robots.txt - google webmaster file

This commit is contained in:
2018-01-29 16:45:59 -06:00
parent 3397d6b6ef
commit 880c61747d
7 changed files with 282 additions and 24 deletions

View File

@@ -4,6 +4,7 @@ const HtmlWebpackPlugin = require('html-webpack-plugin');
const path = require('path');
const webpack = require('webpack');
const FaciconsWebpackPlugin = require('favicons-webpack-plugin');
const CopyWebpackPlugin = require('copy-webpack-plugin');
module.exports = {
entry: {
@@ -78,6 +79,9 @@ module.exports = {
'process.env': {
NODE_ENV: JSON.stringify(process.env.NODE_ENV),
},
})
}),
new CopyWebpackPlugin([{
from: './public'
}])
],
};