diff --git a/src/migrate.html b/src/migrate.html new file mode 100644 index 00000000..7a847b74 --- /dev/null +++ b/src/migrate.html @@ -0,0 +1,98 @@ + + + + Coriolis EDCD Edition + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ + + + diff --git a/webpack.config.dev.js b/webpack.config.dev.js index 44b8a02b..bd09fa55 100644 --- a/webpack.config.dev.js +++ b/webpack.config.dev.js @@ -42,6 +42,11 @@ module.exports = { date: buildDate, gapiKey: process.env.CORIOLIS_GAPI_KEY || '' }), + new HtmlWebpackPlugin({ + inject: false, + template: path.join(__dirname, 'src/migrate.html'), + filename: 'migrate.html' + }), new ExtractTextPlugin({ filename: 'app.css', disable: false, diff --git a/webpack.config.prod.js b/webpack.config.prod.js index 97b3b85c..27a777f0 100644 --- a/webpack.config.prod.js +++ b/webpack.config.prod.js @@ -45,6 +45,10 @@ module.exports = { date: buildDate, version: pkgJson.version }), + new HtmlWebpackPlugin({ + inject: true, + template: path.join(__dirname, 'src/migrate.html') + }), new ExtractTextPlugin({ filename: '[hash:6].css', disable: false,