1 Star 1 Fork 3

李泽/repl

forked from Vue.js/repl 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
vite.preview.config.ts 718 Bytes
一键复制 编辑 原始数据 按行查看 历史
三咲智子 提交于 2023-11-27 22:47 . fix: worker plugins for vite 5
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import replace from '@rollup/plugin-replace'
export default defineConfig({
plugins: [
vue({
script: {
defineModel: true,
},
}),
],
resolve: {
alias: {
'@vue/compiler-dom': '@vue/compiler-dom/dist/compiler-dom.cjs.js',
'@vue/compiler-core': '@vue/compiler-core/dist/compiler-core.cjs.js',
},
},
build: {
commonjsOptions: {
ignore: ['typescript'],
},
},
worker: {
format: 'es',
plugins: () => [
replace({
preventAssignment: true,
values: {
'process.env.NODE_ENV': JSON.stringify('production'),
},
}),
],
},
})
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/zjsj_lize/repl.git
git@gitee.com:zjsj_lize/repl.git
zjsj_lize
repl
repl
main

搜索帮助