线下开发环境使用线上产出如何能使用san devtools #564
fe-Coder
started this conversation in
San devTools
Replies: 1 comment
-
使用 san-devtools 依赖开发版本的 san,而使用 san-cli 进行生产打包时默认会使用生产版本的 san,所以,可以通过在 san.config 文件里配置 alias 指定使用开发版本的 san 就可以了,代码如下: // san.config.js
`module.exports = {
alias: {
'san': path.resolve(__dirname, 'node_modules/san/dist/san.spa.dev.js')
}
};` |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
线下开发环境使用线上产出如何能使用san devtools
Beta Was this translation helpful? Give feedback.
All reactions