clash-manager/vue.live.js

21 lines
331 B
JavaScript
Raw Normal View History

2022-09-28 18:57:11 +08:00
import { resolve } from 'path'
2022-09-30 18:22:03 +08:00
// let pages =
2022-09-28 18:57:11 +08:00
export default {
2022-09-30 18:22:03 +08:00
pages: {
index: {
entry: resolve('./src/main.js'),
2022-11-21 19:26:02 +08:00
title: 'Clash Manager'
2022-09-30 18:22:03 +08:00
}
},
2022-11-21 19:26:02 +08:00
devServer: {
port: 6677
},
2022-09-28 18:57:11 +08:00
imports: {
vue: '//esm.tool/vue.js',
'vue-router': '//esm.tool/vue-router.js',
2022-11-21 19:26:02 +08:00
fetch: '//esm.tool/fetch.js'
2022-09-28 18:57:11 +08:00
}
}