Posts by Yung Silva • 245 points
8 posts
-
0
votes2
answers337
viewsQ: How to force HTTP redirect to HTTPS on NGINX
I’m deploying an app made with nuxt.js. For hosting, I’m using the Digital Ocean + Server Pilot. I’m having trouble forcing the redirect of HTTP for HTTPS. Below is the configuration Nginx that I’m…
-
2
votes1
answer169
viewsQ: animation wave effect in SVG string
I am making an animation SVG and to be complete, is only missing the animation of the string .wrapper { background: #364254; width: 100%; height: 100%; } <div class="wrapper"> <svg…
-
0
votes1
answer146
viewsQ: drag Divs/lessons and get Div’s position
I am developing a course platform website, each course can take many lessons. In the database, each class has a column called position, then for the end user, simply make a listing in order of the…
-
0
votes0
answers33
viewsQ: how to use window.innerWidth inside computed Property - Nuxtjs
am working on a Vue.js/nuxt.js project, where I need to determine styles within the computed Property and apply on a div based on screen size, as in the example below: <template> <div…
-
0
votes1
answer123
viewsA: how to generate an index.js for each build - Webpack
I used a hook that runs only once in the build, with chokidar I keep hearing changes inside my component directory. compiler.hooks.entryOption.tap('MyPlugin', (context, entry) => { // generates…
-
3
votes1
answer123
viewsQ: how to generate an index.js for each build - Webpack
I am working on a nuxt/Vue.js project and applying the Atomic design methodology, so I will have many components, in different folders, example: ├── components │ ├── quarks │ │ └── ... │ ├── bosons…
-
11
votes2
answers458
viewsQ: Circle with curved edge
I’ve been tasked to make a website, and I’m having trouble making a detail in CSS I need to make a round edge that has a curved ending, so you understand better, I’ll show you photo and post my code…
-
3
votes0
answers176
viewsQ: Reverse slide transition, VUE JS
I’m developing a single page Aplication/app mobile, with VUE JS, I want to slide when switching pages, and I can already do it this way: transition name="slide" router-view transition But I wanted…