123456789101112131415161718192021222324252627282930 |
- const path = require("path");
- function resolve(dir) {
- return path.join(__dirname, dir);
- }
- module.exports = {
- publicPath: "./",
- outputDir: "cattletrading",
- lintOnSave: false,
- productionSourceMap: false,
- devServer: {
- inline: true,
- port: 8999,
- open: true,
- },
- configureWebpack: {
- resolve: {
- alias: {
- "@": resolve("src"),
- },
- },
- performance:{
- // 入口起点的最大体积
- maxEntrypointSize: 50000000,
- // 生成文件的最大体积
- maxAssetSize: 30000000,
- }
- },
- };
|