1
0

初始框架(1.0.0)

This commit is contained in:
2022-03-01 23:42:21 +08:00
parent 2a70a2bcee
commit ca2151429f
28 changed files with 21194 additions and 0 deletions

23
vue.config.js Normal file
View File

@@ -0,0 +1,23 @@
const { defineConfig } = require('@vue/cli-service');
const { npm_package_name: packageName } = process.env;
if (packageName) {
process.title = packageName;
}
module.exports = defineConfig({
assetsDir: 'static',
publicPath: './',
outputDir: 'dist',
productionSourceMap: false,
transpileDependencies: false,
devServer: {
host: '0.0.0.0',
port: 9000,
},
});