The Bubble web UI in VueJS
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 

20 行
632 B

  1. /**
  2. * Copyright (c) 2020 Bubble, Inc. All rights reserved.
  3. * For personal (non-commercial) use, see license: https://getbubblenow.com/bubble-license/
  4. */
  5. // -------------------------------------------------------------
  6. // Copy this file to webpack.config.dev.js to use in development
  7. // -------------------------------------------------------------
  8. const webpackMerge = require('webpack-merge');
  9. module.exports = webpackMerge.merge(require('./webpack.config.js'), {
  10. mode: 'development',
  11. devServer: {
  12. proxy: {
  13. '/api': 'http://example.com:8888' // change this to wherever your bubble API is running
  14. }
  15. },
  16. });