Commit d90a6a98 authored by JunHyung An's avatar JunHyung An
Browse files

build dist to public

parent d6868794
Loading
Loading
Loading
Loading
Loading
+4 −6
Original line number Diff line number Diff line
@@ -29,10 +29,8 @@ lint:
  stage: build
  # global cache settings are inherited to grab `node_modules`
  script:
    - node --version
    - npm run lint
  artifacts:
    paths:
      - dist/           # where ever your build results are stored
         
pages:
  stage: deploy
@@ -43,6 +41,6 @@ pages:
    - cp -a dist/. public/
  artifacts:
    paths:
      - public
      - public # where ever your build results are stored
  rules:
    - if: $CI_COMMIT_REF_NAME == $CI_DEFAULT_BRANCH
 No newline at end of file
+1 −0
Original line number Diff line number Diff line
const { defineConfig } = require('@vue/cli-service')
module.exports = defineConfig({
  outputDir: 'public',
  transpileDependencies: true
})