-
[solved] how to configure sass for mpvue
Business background
use mpvue for the first time sass before, but it s all configured by someone else. has not used webpack .
my actions
initialize the project according to mpvue tutorial
copy the sample file pages counter is pages...
-
Webpack+vue configuration stylus error
pakage.json
devDependencies:{
...
"css-loader": "^0.28.0",
"style-loader": "^0.20.3",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.2",
...
}
webpack...
-
Webpack has a problem.
1. After packaging the project with vue-cli, if you encounter the packaged project that needs to add new modules, do you want to repackage it? In that case, if the project is big enough, you can t be exhausted. how can 2.webpack be packaged in modules...
-
How to configure webpack in vue-cli to compile less- > css separately
In the project, you need a set of stylesheets that cover some common styles. What I hope to achieve is: write a single style.less to generate style.css, in real time
style.less
.btn{
...
}
reference in the html tag
<a class="btn"&...
-
Vue version 2 npm run build error Error: Unexpected "space" found.
run npm run build output error
...
-
Enter the play when there is a problem with the use of externals in webpack.
index.html uses the following cdn,
webpack.base.config.jsexternals
:
...
-
Use the dllPlugin of webpack to extract the dynamic link library, and then how to reference it in the development environment
has been used in the reproduction environment. Add links such as links to the packaged index.html directly.
...
-
Vue+webpack the same project how to achieve two templates (mobile phone side and PC side), automatically switch templates according to different devices?
for example, personal mini projects need to support both pc and mobile. so it s best to work on a project, which is convenient and convenient. I use vue-cli scaffolding. Do not know how to distinguish between the pc side and the mobile side to write ...
-
The vue-cli command prompt is not clear
when using vue-cli+webpack to build a project, use npm run dev to run, but before the computer will only display the current information in the command prompt, the previous compiled information will be hidden, and the new computer will show new and old....
-
Run multiple independent projects under a set of webpack framework
may not be very detailed, specifically:
for example, there is a webpack single-page running environment, I have A project, B project, C project, all under this webpack development environment, can be developed.
that is to say, in this single-pag...
-
How to access css File in browser in vue
vue-cli project, how to access the css file in the browser, I now access the address of the css file, the address bar will automatically add-sharp , what I want to do is to access the css file to display the contents of the css file. How should it be co...
-
After vue is packaged, it needs to be run locally, and interface information can be accessed locally at the same time.
configindex.js api axios
...
-
VScode path prompts questions after webpack customizes aliases
the project starting with vue-cli is configured with a custom alias. Such as "@ xxx " or something, but VScode didn t give a hint. VScode is installed with plug-ins and is prompted with relative paths, such as ". xxx ". What should I do? For a de...
-
Error starting project after babel-loader processing vue-echarts-v3
vue-echarts-v3, is used in the project because there is ES6 code in it after packaging, so add vue-echarts-v3 to the processing scope of babel-loader.
in webpack.base.conf.js:
{
test: .js$ ,
loader: babel-loader ,
options:{
...
-
Webpack packing error report
package.json scripts configuration
Errors:
2 http: eslint.org docs rules no-undef
@ . node_modules babel-loader lib!. node_modules vue-loader lib selector.js?type=script&index=0!. src components Modal Feedback index.vue 94:0-47
@ . src co...
-
Vue-cli upgrade to webpack4.6 error
webpack was also upgraded to version 4.6 during the vue-cli global upgrade package, and then the build project reported the following error, webpack.optimize.CommonsChunkPlugin has been removed, please use config.optimization.splitChunks instead.
B...
-
Which version of webpack? is used in vue-cli 3.0?
now the version of webpack is not shown in package.json. How can I know which version it is ...
-
[VUE CLI3] Multi-page devServer jump returned html error problem
problem description
recently attempted to update project scaffolding from vue-cli2 webpack2 to vue cli 3 webpack4
vue-cli-service serve
indexlogin, window.location.href = login loginindex.htmlindex.js
url localhost:3007 login.htmlurllocalhos...
-
Configure webpack plug-in prompt webpack not defined in vue-cli3
configure in vue.config.js:
> vue-cli-service serve
INFO Starting development server...
ERROR ReferenceError: webpack is not defined
ReferenceError: webpack is not defined
question: 1. Why did you report this error? 2. How can I modify it to...
-
(webpack4) how to configure jquery? in vue.config.js
databases depends on jquery, in vue project, so it needs to be introduced. In the past, it was introduced directly through CDN, but now the boss asked npm to introduce, npm install jQuery. Direct import will report an error after checking and saying tha...