Files
moon-gaming/Sketchbook-master/Sketchbook-master/webpack.prod.js
T
2023-12-16 22:36:37 +00:00

13 lines
449 B
JavaScript

const webpack = require('webpack');
const merge = require('webpack-merge');
const common = require('./webpack.common.js');
module.exports = merge(common, {
mode: 'production',
plugins: [
new webpack.BannerPlugin({
banner:
`Sketchbook 0.4 (https://github.com/swift502/Sketchbook)\nBuilt on three.js (https://github.com/mrdoob/three.js) and cannon.js (https://github.com/schteppe/cannon.js)`,
}),
]
});