ruffle/web/extension/webpack.config.js

23 lines
488 B
JavaScript
Raw Normal View History

2019-08-20 04:29:53 +00:00
const { CleanWebpackPlugin } = require('clean-webpack-plugin');
const webpack = require('webpack');
const path = require('path');
module.exports = (env, argv) => {
let mode = "development";
if (argv && argv.mode) {
mode = argv.mode;
}
console.log(`Building ${mode}...`);
return {
entry: path.resolve(__dirname, "js/index.js"),
2019-08-20 04:29:53 +00:00
output: {
path: path.resolve(__dirname, "build/dist"),
filename: "ruffle.js",
2019-08-20 04:29:53 +00:00
},
mode: mode,
plugins: []
2019-08-20 04:29:53 +00:00
}
};