14 lines
334 B
JavaScript
14 lines
334 B
JavaScript
const { defineConfig } = require('@vue/cli-service')
|
|
module.exports = defineConfig({
|
|
transpileDependencies: true,
|
|
lintOnSave: false,
|
|
pages: {
|
|
index: {
|
|
entry: 'src/main.js',
|
|
template: 'public/index.html',
|
|
filename: 'index.html',
|
|
title: '爱特工作室物品管理及财务管理系统',
|
|
}
|
|
}
|
|
})
|