use in Vue
See original GitHub issue{
configureWebpack: {
plugins: [new ESBuildPlugin()
],
},
chainWebpack: config => {
// esbuild 配置
config.module
.rule('js')
.test('/.js$/')
.use('esbuild-loader')
.loader('esbuild-loader')
.end()
}
}
Issue Analytics
- State:
- Created 3 years ago
- Comments:5 (1 by maintainers)
Top Results From Across the Web
Introduction - Vue.js
Vue (pronounced /vjuː/, like view) is a JavaScript framework for building user interfaces. It builds on top of standard HTML, CSS ...
Read more >VueUse | VueUse
VueUse ; Feature Rich. 200+ functions for you to choose from ; Seamless migration. Works for both Vue 3 and 2 ; Fully...
Read more >Getting started with Vue - Learn web development | MDN
Vue is a modern JavaScript framework that provides useful facilities for progressive enhancement — unlike many other frameworks, you can use ...
Read more >What is the purpose of Vue.use() while importing a plugin? If ...
Vue.use automatically prevents you from using the same plugin more than once, so calling it multiple times on the same plugin will install ......
Read more >Getting Started with VueJS - Medium
Vue -cli is a command line helper for generating and managing VueJS applications. Let's install it globally with npm so we can use...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Thanks. This is just to tell developers how to use
esbuild-loader
invue-cli
. It’s not a problem.Does someone know how to make it works with vue-loader? (using just webpack, not a vue-cli setup)