All Questions
85
questions
0
votes
1
answer
172
views
Amplify deployment error with no error after build
I've been going crazy for several days now. I have a project with vue3 that is deployed to amplify from bitbucket. There is no pipeline or anything, just the amplify.yml which I don't even have in the ...
0
votes
0
answers
52
views
How to create a standalone embeddable script from an internal Vue component?
I have a Vue application, and within, I have a component, which I reuse throughout the app. It's located in src/components.
I'd now like to make it so this component can be embedded into other ...
0
votes
0
answers
67
views
Vue3 Openlayers + webpack = can't resolve modules
webpack fails to resolve modules dependencies when compiling
I got 94 erros like this:
ERROR in ./node_modules/vue3-openlayers/dist/vue3-openlayers.es.js 63:0-41
Module not found: Error: Can't resolve ...
1
vote
1
answer
118
views
When running npx creat-vue gives me an error message, and can not create-vue app
I am trying to create a vuejs aplication using npx, but the npx create-vue app command line it gives the error below. The node version is
v12.22.9 and the npm version is 8.5.1.
> home/myuser/.npm/...
2
votes
0
answers
585
views
How to configure development build and DevTools for vue 3 on vite
I recently migrated an existing Vue 3 project from Vue CLI to Vite.
There's an issue with the app that's specific to a situation happening in production and there's no error in Chrome DevTools console ...
0
votes
0
answers
31
views
How can I pass an entire URL, with filenames and query parameters, as a single prop in Vue Router?
I'm working on a website that essentially functions the same as the Internet Archive's Wayback Machine, storing backups of entire websites. The Wayback Machine's URLs for backups look like this:
https:...
0
votes
0
answers
93
views
Implementing 'sliding' pagination
I'm attempting to implement pagination with "sliding" behavior. I want to display a maximum of 4 pages (regardless of window width, so that all 100+ pages won't show up on mobile screen), ...
0
votes
1
answer
194
views
How to load vue in production mode when using vue.esm-bundler.js?
I'm using Vue 3 with webpack, and loading it with vue.esm-bundler.js, because I have in-dom templates.
Docs say that with a bundler, "Leaves prod/dev branches with process.env.NODE_ENV guards (...
0
votes
0
answers
51
views
Error: "Cannot find module 'lowdb/node'" in Cypress
I'm working on a Cypress test suite and I'm trying to load a component that uses the 'lowdb' package. However I'm encountering the following error: cypress error
Cypress version: v13.6.0
Node.js ...
1
vote
1
answer
343
views
How to use Node.js with Nuxt.js?
I'm have server.js file in directory "Server", which connected with Nuxt.js
server.js
const express = require('express');
const app = express();
app.get('/api/data', (req, res) => {
...
1
vote
2
answers
143
views
same cookie notice reappears on subdomain despite it was accepted
I'm encountering an issue where, despite accepting cookies on the primary localhost, the cookie notification persists when I move to a subdomain such as requester.localhost. Same with if I accept ...
-1
votes
1
answer
655
views
How to fix the Uncaught (in promise) DOMException: Failed to load because no supported source was found error in Vue + Node?
I'm build a a web app that takes in speech and converts into text. The text is then converted into text and sent to openai(chatgpt) so that it returns the answer. aws polly is what i use for the voice ...
0
votes
1
answer
210
views
Why won't Vue 3 rerender an <img>, even when it rerenders everything else in a component?
I'm working on a Vue project, in which multiple link cards (<a class='card'></a>) are stacked inside a "deck" (<div class='deck'></div>). The setup for these is ...
0
votes
2
answers
5k
views
Npm ERR! request to [url] failed, reason: SSL routines:final_renegotiate unsafe legacy renegotiation disabled
I recently updated the version of Node JS for a Vue 3 application.
To migrate from Node V.16 to Node V.18.
However, after successfully updating via the *.exe installer.
I am unable to perform the &...
0
votes
0
answers
522
views
Create a VueJS frontend for an existing PHP backend
I've made an application in PHP, which is also accessible as REST API.
Now I want to create the frontend part in Vue.js.
I've got Visual Studio (not to be confused with VS code) installed and this is ...