0 Star 0 Fork 0

周博义/leetcode

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
vue.config.js 1.10 KB
一键复制 编辑 原始数据 按行查看 历史
周博义 提交于 2023-09-25 15:10 . chore(icon): 引入iconify图标库
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
}
})
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/zhouboyi/leetcode.git
[email protected]:zhouboyi/leetcode.git
zhouboyi
leetcode
leetcode
master

搜索帮助