123456789101112131415161718192021222324252627282930313233343536373839 |
- var webpack = require("webpack");
- module.exports = {
-
-
-
- publicPath: "/",
- lintOnSave: process.env.NODE_ENV !== "production" ? true : "error",
- configureWebpack: {
- devtool: "source-map",
- plugins: [
-
-
- new webpack.IgnorePlugin(/^\.\/locale$/, /moment|iview$/),
- ],
-
- externals: ["mysql"],
- },
- transpileDependencies: [/\bvue-awesome\b/],
- pluginOptions: {
- electronBuilder: {
- externals: [],
- builderOptions: {
- extraFiles: ["extra/**"],
- win: {
- target: "portable",
- signAndEditExecutable: false,
- publisherName: "启明泰和",
- publish: {
- provider: "generic",
- url: "url",
- channel: "latest",
- publishAutoUpdate: false,
- },
- },
- },
- },
- },
- };
|