21 lines
637 B
YAML
Raw Normal View History

2021-01-20 22:31:34 +07:00
# that's important to place this file into /app/_config/webpack.yml
# with all configuration variables presented
# Cuz WebPack compiling script use it to set configuration
2021-03-15 03:46:04 +07:00
App\Templates\WebpackTemplateProvider:
2021-01-20 22:31:34 +07:00
APPDIR: ./
THEMESDIR: themes
HOSTNAME: 127.0.0.1
2021-02-13 00:57:33 +07:00
PORT: 3001
2021-01-20 22:31:34 +07:00
SRC: src
DIST: dist
TYPESJS: src/js/types
TYPESSCSS: src/scss/types
webp: false
2021-02-21 15:17:41 +07:00
NODE_ENV: production #production,development
2021-02-21 17:42:04 +07:00
HTTPS: false
injectClient: true # disable it to test caching service worker
GRAPHQL_URL: 'http://127.0.0.1/graphql'
2021-02-13 00:57:33 +07:00
GRAPHQL_API_KEY: 'ApKrRSjySO4JAmX3E2Z7HvrBD0m8xdDlAiXyh4IbH3w'
2021-02-20 13:00:59 +07:00
STATIC_URL: 'http://127.0.0.1'