1 Star 0 Fork 2

杭州蘇小小/vite-template

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
vite.config.ts 1.18 KB
一键复制 编辑 原始数据 按行查看 历史
杭州蘇小小 提交于 2021-10-25 12:38 . update
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import path from 'path'
import vueJsx from '@vitejs/plugin-vue-jsx'
// import { viteMockServe } from "vite-plugin-mock";
// https://vitejs.dev/config/
export default defineConfig({
plugins: [
vue(),
vueJsx({
// options are passed on to @vue/babel-plugin-jsx
}),
// viteMockServe({
// supportTs: false,
// mockPath: './src/mock',
// localEnabled: true,//是否开启本地的mock功能
// prodEnabled: true,// 生产打包开关
// })
],
server: {
open: false,
port: 8080,
https: false,
host: '0.0.0.0',
origin: "http://127.0.0.1:8080/",
// proxy: {
// '/api': {
// target: target,
// changeOrigin: true,
// rewrite: (pathStr) => pathStr.replace('/api', '')
// }
// }
},
resolve: {
//别名
alias: {
'@': path.resolve(__dirname, 'src')
}
},
css: {
preprocessorOptions: {
scss: {
// 添加公共样式
additionalData: `
@import "./src/assets/styles/variable.scss";
@import "./src/assets/styles/common.scss";
`
}
}
}
})
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/SuHangWeb/vite-template.git
git@gitee.com:SuHangWeb/vite-template.git
SuHangWeb
vite-template
vite-template
master

搜索帮助