1
0
Fork 0
forked from forgejo/forgejo

move swagger-ui to webpack/npm (#9714)

Created a second webpack output file for swagger-ui which is loaded on
the /api/swagger route. One notable difference is the absence of the
swagger favicon that was previously used which is now the gitea icon. I
see no easy way to restore that favicon, so I decided to not keep it.
This commit is contained in:
silverwind 2020-01-14 19:02:08 +01:00 committed by techknowlogick
parent 44de66bf50
commit f00961abe7
19 changed files with 875 additions and 462 deletions

View file

@ -1,15 +1,17 @@
const path = require('path');
const TerserPlugin = require('terser-webpack-plugin');
const { SourceMapDevToolPlugin } = require('webpack');
module.exports = {
mode: 'production',
entry: {
index: ['./web_src/js/index']
index: ['./web_src/js/index'],
swagger: ['./web_src/js/swagger'],
},
devtool: 'source-map',
devtool: false,
output: {
path: path.resolve(__dirname, 'public/js'),
filename: 'index.js',
filename: '[name].js',
chunkFilename: '[name].js',
},
optimization: {
@ -57,5 +59,18 @@ module.exports = {
use: ['style-loader', 'css-loader'],
},
]
}
},
plugins: [
new SourceMapDevToolPlugin({
filename: '[name].js.map',
exclude: [
'swagger.js',
],
}),
],
performance: {
assetFilter: (filename) => {
return !filename.endsWith('.map') && filename !== 'swagger.js';
}
},
};