"use strict"; const path = require("path"); function resolve(dir) { return path.join(__dirname, dir); } const name = "静海区特殊人群关爱服务系统"; module.exports = { publicPath: "./", outputDir: "dist", assetsDir: "static", lintOnSave: false, productionSourceMap: false, devServer: { port: 9535, }, configureWebpack: { // provide the app's title in webpack's name field, so that // it can be accessed in index.html to inject the correct title. name: name, resolve: { alias: { "@": resolve("src"), }, }, }, };