12345678910111213141516171819 |
- const path = require("path");
- function resolve(dir) {
- return path.join(__dirname, dir);
- }
- module.exports = {
- lintOnSave: false,
- configureWebpack: {
- resolve: {
- alias: {
- "@": resolve("src"),
- },
- },
- },
- devServer:{
- port:"8088"
- }
- };
|