代码拉取完成,页面将自动刷新
const { defineConfig } = require('@vue/cli-service')
const IconPlugin = require('unplugin-icons/webpack')
module.exports = defineConfig({
// 编译依赖包中的代码
transpileDependencies: true,
// Webpack 配置
chainWebpack: config => {
// 加载 Markdown 的配置到 Vue 中
config.module
.rule('md')
.test(/\.md/)
.use('vue-loader')
.loader('vue-loader')
.end()
.use('vue-markdown-loader')
.loader('vue-markdown-loader/lib/markdown-compiler')
.options({ raw: true })
},
configureWebpack: {
plugins: [
// 自动下载图标配置
IconPlugin({ compiler: 'vue3', autoInstall: true })
]
},
// CSS 配置
css: {
loaderOptions: {
// SASS 配置
sass: {
// 全局引入样式文件
additionalData: `@import "@/style/variable.scss";`
}
}
},
// 开发配置
devServer: {
host: '127.0.0.1',
port: 18003,
open: true
}
})
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。