refactor(app): backport technical changes (#4679)

* refactor(app): backport technical changes

* refactor(app): remove EE only features

* feat(app): small review changes to match EE codebase layout on some files

Co-authored-by: xAt0mZ <baron_l@epitech.eu>
This commit is contained in:
Alice Groux
2021-02-26 16:50:33 +01:00
committed by GitHub
parent 158bdae10e
commit ccf6babc02
40 changed files with 951 additions and 976 deletions
-10
View File
@@ -1,4 +1,3 @@
const path = require('path');
const webpackMerge = require('webpack-merge');
const commonConfig = require('./webpack.common.js');
@@ -18,13 +17,4 @@ module.exports = webpackMerge(commonConfig, {
},
],
},
devServer: {
contentBase: path.join(__dirname, '.tmp'),
compress: true,
port: 8999,
proxy: {
'/api': 'http://localhost:9000',
},
open: true,
},
});