加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
vue.config.js 2.39 KB
一键复制 编辑 原始数据 按行查看 历史
martsforever 提交于 2023-12-13 21:03 . feat: docs打包配置
const path = require('path');
const resolve = filePath => path.resolve(__dirname, './', filePath);
const { DefinePlugin } = require('webpack');
const bodyParser = require('body-parser');
const { mockDevServer } = require("./server/server.dev");
require('./server/clearMeida');
// process.env.NODE_ENV = 'production';
const outputDir = 'docs';
const port = '3377';
const globalComponentPrefix = 'pl';
const config = {
publicPath: '/plain-editor/', // 部署路径
};
module.exports = {
publicPath: config.publicPath,
outputDir: resolve(outputDir),
lintOnSave: false,
devServer: {
port,
/*避免更新静态文件时刷新页面*/
liveReload: false,
before(app) {
app.use(bodyParser.json());
mockDevServer(app, config);
},
},
pages: {
index: {
entry: resolve('src/pages/index/main.tsx'),
template: 'public/index.html',
filename: 'index.html',
title: 'plain-editor 编辑器',
chunks: ['chunk-vendors', 'chunk-common', 'index'],
},
},
css: {
sourceMap: false,
loaderOptions: {
sass: {
prependData: `$prefix:'${globalComponentPrefix}'; @import "node_modules/plain-design/src/packages/styles/global.import.scss";`
}
},
},
configureWebpack: {
plugins: [
new DefinePlugin({
ENV: JSON.stringify(config),
globalComponentPrefix: JSON.stringify(globalComponentPrefix),
}),
]
},
chainWebpack(config) {
config.plugins
.delete('prefetch-index')
.delete('preload-index');
config
.plugin('html-index')
.tap((args) => {
args[0].chunksSortMode = 'manual';
return args;
});
config.resolve.alias
.set('@', resolve('src'))
.set('src', resolve('src'))
.set('~', resolve('node_modules'))
.set('plain-design-composition/src/index', resolve('abc'))
.set('quill', resolve('node_modules/quill/quill.js'));
// .set('plain-design-composition/src/index', resolve('abc'));
// .set('plain-design', resolve('node_modules/plain-design/src/packages'))
// .set('plain-design-composition', resolve('node_modules/plain-design-composition/src/index'))
if (process.env.NODE_ENV === 'development') {
// config.resolve.alias.set('react-dom', 'react-dom/cjs/react-dom.production.min');
}
config.plugins
.delete('prefetch-index')
.delete('preload-index');
},
};
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化