mirror of
https://github.com/vxcontrol/ncform.git
synced 2026-06-30 22:17:58 -04:00
18 lines
240 B
JavaScript
Executable File
18 lines
240 B
JavaScript
Executable File
const path = require("path");
|
|
const webpack = require("webpack");
|
|
|
|
const config = require("./config");
|
|
|
|
module.exports = {
|
|
|
|
mode: 'production',
|
|
|
|
output: {
|
|
filename: "[name].min.js",
|
|
},
|
|
|
|
optimization: {
|
|
minimize: true
|
|
}
|
|
};
|