diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 14:29:10 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 14:29:10 +0000 |
commit | 2aa4a82499d4becd2284cdb482213d541b8804dd (patch) | |
tree | b80bf8bf13c3766139fbacc530efd0dd9d54394c /gfx/wr/debugger/webpack.config.js | |
parent | Initial commit. (diff) | |
download | firefox-upstream.tar.xz firefox-upstream.zip |
Adding upstream version 86.0.1.upstream/86.0.1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'gfx/wr/debugger/webpack.config.js')
-rw-r--r-- | gfx/wr/debugger/webpack.config.js | 77 |
1 files changed, 77 insertions, 0 deletions
diff --git a/gfx/wr/debugger/webpack.config.js b/gfx/wr/debugger/webpack.config.js new file mode 100644 index 0000000000..aecdd9d121 --- /dev/null +++ b/gfx/wr/debugger/webpack.config.js @@ -0,0 +1,77 @@ +/* eslint-env node */ + +var path = require("path"); +var webpack = require("webpack"); + +module.exports = { + entry: "./src/main.js", + output: { + path: path.resolve(__dirname, "./dist"), + publicPath: "/dist/", + filename: "build.js", + }, + module: { + rules: [ + { + test: /\.css$/, + use: ["vue-style-loader", "css-loader"], + }, + { + test: /\.vue$/, + loader: "vue-loader", + options: { + loaders: {}, + // other vue-loader options go here + }, + }, + { + test: /\.js$/, + loader: "babel-loader", + exclude: /node_modules/, + }, + { + test: /\.(png|jpg|gif|svg)$/, + loader: "file-loader", + options: { + name: "[name].[ext]?[hash]", + }, + }, + ], + }, + resolve: { + alias: { + icons: path.resolve(__dirname, "node_modules/vue-material-design-icons"), + }, + extensions: ["*", ".js", ".vue", ".json"], + }, + devServer: { + historyApiFallback: true, + noInfo: true, + overlay: true, + }, + performance: { + hints: false, + }, + devtool: "#eval-source-map", +}; + +if (process.env.NODE_ENV === "production") { + module.exports.devtool = "#source-map"; + // http://vue-loader.vuejs.org/en/workflow/production.html + module.exports.plugins = (module.exports.plugins || []).concat([ + new webpack.DefinePlugin({ + "process.env": { + NODE_ENV: '"production"', + }, + }), + new webpack.optimize.UglifyJsPlugin({ + sourceMap: true, + compress: { + warnings: false, + }, + }), + new webpack.LoaderOptionsPlugin({ + minimize: true, + }), + ]); +} |