feat(web): remove web-server and change web to a static website deployment (#1360)

* feat(web): add deploying static app

* fix(web): linter ignore patterns

* fix(web): cloudfront invalidation and favicons placement

* feat(web-server): remove web-server package in favour of web

* fix(web): remove linter parallel jobs due to oom issue

* fix(mobile): eslintignore paths

* fix(web): copy of components

* fix(web): include building components in building all process

* fix(web): copying of components
This commit is contained in:
Karol Sójko
2022-08-03 14:51:59 +02:00
committed by GitHub
parent 3116ae3883
commit 483cac90cf
110 changed files with 87 additions and 2762 deletions

View File

@@ -2,6 +2,7 @@ const path = require('path')
const webpack = require('webpack')
const MiniCssExtractPlugin = require('mini-css-extract-plugin')
const CircularDependencyPlugin = require('circular-dependency-plugin')
const CopyWebpackPlugin = require('copy-webpack-plugin')
const mergeWithEnvDefaults = require('./web.webpack-defaults')
require('dotenv').config()
@@ -36,6 +37,19 @@ module.exports = (env) => {
filename: './app.css',
ignoreOrder: true, // Enable to remove warnings about conflicting order
}),
new CopyWebpackPlugin({
patterns: [
{ from: 'src/favicon', to: 'favicon' },
{ from: 'src/vendor', to: 'dist' },
{ from: 'src/components', to: 'components' },
{ from: 'src/404.html' },
{ from: 'src/422.html' },
{ from: 'src/500.html' },
{ from: 'src/index.html' },
{ from: 'src/manifest.webmanifest' },
{ from: 'src/robots.txt' }
]
})
],
resolve: {
extensions: ['.ts', '.tsx', '.js'],