增加新手引导

This commit is contained in:
muwoo
2023-08-02 14:02:30 +08:00
parent 2cdfcbbbae
commit 6cbd5fe15b
18 changed files with 6485 additions and 0 deletions

16
guide/vue.config.js Normal file
View File

@@ -0,0 +1,16 @@
const path = require('path');
module.exports = {
css: {
// 配置css模块
loaderOptions: {
// 向预处理器 Loader 传递配置选项
less: {
// 配置less其他样式解析用法一致
javascriptEnabled: true, // 设置为true
},
},
},
outputDir: path.join(__dirname, '../public/guide'),
publicPath: process.env.NODE_ENV === 'production' ? '' : '/',
};