Merge remote-tracking branch 'origin/main' into main
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
# Conflicts: # src/entities/product/ui/ProductImage.vue
This commit is contained in:
commit
085253d77d
|
@ -0,0 +1,34 @@
|
|||
kind: pipeline
|
||||
type: docker
|
||||
name: stage-deploy
|
||||
|
||||
trigger:
|
||||
event:
|
||||
- push
|
||||
|
||||
steps:
|
||||
- name: build
|
||||
image: node:20.9
|
||||
commands:
|
||||
- node -v
|
||||
- npm -v
|
||||
- yarn --version
|
||||
- yarn install
|
||||
- yarn generate
|
||||
|
||||
- name: scp
|
||||
image: appleboy/drone-scp
|
||||
settings:
|
||||
host:
|
||||
from_secret: server_ip
|
||||
username:
|
||||
from_secret: ssh_user
|
||||
key:
|
||||
from_secret: ssh_key
|
||||
port:
|
||||
from_secret: ssh_port
|
||||
target:
|
||||
- deploys/sweet_crm
|
||||
source:
|
||||
- .output/public
|
||||
rm: true
|
|
@ -1,6 +1,7 @@
|
|||
// https://nuxt.com/docs/api/configuration/nuxt-config
|
||||
export default defineNuxtConfig({
|
||||
devtools: { enabled: true },
|
||||
ssr: false,
|
||||
devtools: { enabled: false },
|
||||
eslint: {
|
||||
config: {
|
||||
standalone: false,
|
||||
|
|
Loading…
Reference in New Issue